:root {
    --primary-color: rgba(76, 175, 80, 0.8); /* Semi-transparent Green */
    --secondary-color: #001F3F; /* White */
    --text-color: #333333;
}

.navbar {
    background-color: transparent; /* Make navbar transparent */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Keeps navbar at the top */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensures navbar stays above other content */
}
.logo {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; /* Aligns the logo vertically */
    justify-content: center; /* Centers the content horizontally */
    /* gap: 10px; */
}

.logo img {
    max-width: 100%;
    height: 80px; /* Maintains aspect ratio */
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        width: 180px; /* Smaller width on smaller screens */
    }
}
.navbar-brand {
    color: var(--secondary-color) !important;
    font-weight: bold;
    font-size: 22px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 8px 12px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.user-avatar {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.user-avatar span {
    color: var(--secondary-color) !important;
    font-weight: 500;
}
