html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

    body::-webkit-scrollbar {
        display: none !important;
    }

.w-5 {
    width: 5%;
}

.w-8 {
    width: 8%;
}

.w-11 {
    width: 11%;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.card-size {
    min-width: 280px;
    max-width: 280px;
    min-height: 100px;
}

.slide-in-top {
    animation: slide-in-top 1s cubic-bezier(0.65, 0.05, 0.36, 1) both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.pagination-pos {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.qr-img {
    height: 250px;
    width: 250px;
    left: 75%;
    top: 13%;
    position: absolute;
}

.qr-index {
    display: block;
}

.card:hover .qr-index {
    display: block;
}

.dropdownSection {
    display: flex;
    gap: 16px;
}

.footer-pos {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.Gen-Date {
    width: 85%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #303030;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #222;
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.bg-coda {
    background: #375a7f;
}

.btn-toggle {
    background-color: #dc3545; /* Red by default */
    color: white;
    border: none;
}

.btn-check:checked + .btn-toggle {
    background-color: #198754; /* Green when checked */
    color: white;
}

#quarterCircleTopLeft {
    width: 200px;
    height: 58px;
}

#RememberMeCheckBox:checked + label {
    background-color: #198754;
    border-color: #198754;
}

#ActiveCheckBox:checked + label {
    background-color: #198754;
    border-color: #198754;
}

.desktop-header {
    display: block;
}

.mobile-header {
    display: none;
}

#material-dropdown-container {
    display: flex;
    gap: 8px;
}

@media (max-width: 700px) {
    .desktop-header {
        display: none !important;
    }

    .mobile-header {
        display: block !important;
    }

    #material-dropdown-container {
        display: grid;
    }
}