/* <style> */
       /* Navbar Styling */
.navbar {
    font-family: 'Roboto', sans-serif;
    background-color: rgb(81, 81, 233);
    padding: 1rem;
    height: 90px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Increased box-shadow */
}

.navbar-dark {
    background-color: #003366; /* Blue for Mobile */
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 80px; /* Increased logo height */
    max-width: 150px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    width: 100%;
    justify-self: center !important;
    font-size: 1rem;
    color: white !important; /* Change navbar items color to white */
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #040618 !important;
}

.btn-outline-light {
    font-size: 1rem;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #003366;
}

.btn-outline-dark {
    font-weight: bold;
    font-size: 1.1rem;
    color: #e6dfdd;
    border-color: #111;
}

.btn-outline-dark:hover {
    background-color: #111;
    color: white;
}

/* <style> */
  .modal-content {
    padding: 1rem;
    border-radius: 10px;
  }

  #loginSection, #signupSection {
    text-align: center;
  }

  #loginForm, #signupForm {
    margin: 0 auto;
  }

  a {
    color: #007bff;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
/* </style> */


/* Mobile View Modal */
@media (max-width: 767px) {
    .navbar {
        background-color: #003366 !important; /* Force Blue Background for Mobile */
        color: white;
    }

    .navbar-brand img {
        max-height: 50px; /* Increased logo height */
        margin-right: 10px;
    }

    .navbar-nav .nav-link {
        color: white; /* Navbar items color as white in mobile view */
    }

    .modal-content {
        background-color: #f8f9fa;
        border-radius: 0;
    }

    .modal-header {
        background-color: #003366;
        border-bottom: 1px solid #ddd;
        padding: 1rem 1.5rem;
        color: white;
    }

    .modal-header .modal-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin: auto;
    }

    .modal-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .modal-body a {
        display: block;
        font-size: 1.125rem;
        color: #495057;
        padding: 12px;
        text-decoration: none;
        text-align: center;
        width: 100%;
    }

    .modal-body a:hover {
        background-color: #dcdcdc;
    }

    .dropdown-item {
        text-align: center;
        padding: 8px 16px;
    }

    .dropdown-item:hover {
        background-color: #e9ecef;
    }
}


