﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");


.main-nav .nav {
    display: flex;
    list-style: none;
    gap: 0rem;
    justify-content: center;
    align-items: center;
}

/* Hide hamburger icon on desktop */
.mobile-nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

disabled-btn:disabled {
  background-color: gray !important;
  border-color: gray !important;
  cursor: not-allowed;
}

/* Optional: move checkbox completely to the right */
.modal-footer .form-check {
  margin-left: auto; /* pushes it to the right */
}

/* --- Mobile view --- */
@media (max-width: 991px) {
    .main-nav .nav {
        display: none;
        flex-direction: column;
        text-align: center;
        background: transparent;
        position: absolute;
        top: 1px; /* below the header */
        left: 0;
        width: 100%;
        box-shadow:none;
        padding: 1rem 0;
    }
        .main-nav .nav a {
            padding: 6px 10px;
            margin: 0;
            line-height: 1.2;
        }

    .main-nav .nav.nav-active {
        display: flex; /* show when toggled */
    }

    .mobile-nav-toggle {
        display: block; /* show hamburger on mobile */
        position: absolute;
        right: 20px;
        top: 25px;
        z-index: 999;
        color: #333;
    }
}




