@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.bunny.net/css?family=albert-sans:200,300,400,500");


body {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 105vh;
    margin: 0;
    background-color: #050404;
}

.navbar {
    font-family: Albert Sans, sans-serif;
    font-weight: 500;
}

.list-group {
    width: 100%; /* Example width, adjust as needed */
    margin: auto; /* Center the list group horizontally */
    font-family: Albert Sans, sans-serif;
    font-weight: 500;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.list-group-horizontal::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.list-group-horizontal {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Media query for devices with width less than or equal to 600px */
@media (max-width: 600px) {
    .list-group-horizontal {
        /* Keep the same layout as desktop but adjust for mobile */
        width: calc(100% - 20px); /* Adjust width to ensure it doesn't overflow the screen width */
        margin: 0 10px; /* Adjust margin to ensure space between the list and the screen edge */
    }
}

.list-group-horizontal {
    display: flex; /* Ensures items are laid out horizontally */
    width: 100%; /* Adjust this as needed, could be 100% of a parent container */
    max-width: 100%; /* Example max-width, adjust based on your design */
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap; /* Prevents items from wrapping to the next line */
}

.list-group-item {
    background-color: #1a1a1a;
    color: rgb(255, 255, 255);
    border: 1px solid #1a1a1a;
}

.list-group-item:hover {
    background-color: #7763fa75;
    color: rgb(255, 255, 255);
    border: 1px solid #1a1a1a;
}

.list-group-item:active {
    background-color: #7763fa;
    color: rgb(255, 255, 255);
    border: 1px solid #1a1a1a;
}

.list-group-item:focus {
    background-color: #7763fa;
    color: rgb(255, 255, 255);
    border: 1px solid #1a1a1a;
}

.list-group button span.badge {
    /* font-family: Roboto Flex; */
    background-color: #7763fa !important;
}

/* grid-container */
.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    padding: 10px;
}

.card {
    background-color: #1a1a1a !important;
    color: rgb(255, 255, 255);
    border: 1px solid #7763fa7e;
}

.card .card-body h5 {
    font-family: Albert Sans, sans-serif;
    font-weight: 500;
}

.card .card-body h6 {
    color: #7763fa !important;
    font-family: Albert Sans, sans-serif;
    font-weight: 400;
}

.card .card-body p {
    color: rgb(255, 255, 255) !important;
    font-family: Albert Sans, sans-serif;
    font-weight: 300;
}

.card .card-body .description-container {
    margin-bottom: 25px;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
}

.copy-btn .clipboard-icon {
    font-size: 1rem;
    color: #000; /* Adjust color as needed */
}

.copy-btn:focus {
    outline: none;
}