.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0,0,0,0.85);
    border-bottom: 2px solid #2FFF2F; /* Christmas green */
    box-shadow: 0 0 20px #2FFF2F; /* green glow */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-right {
    display: flex;
    gap: 2rem;
}

.logo {
    height: 30px;
    margin-right: 1rem;
}

.logo-text {
    color: #2FFF2F; /* green */
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 
        0 0 5px #2FFF2F,
        0 0 10px #2FFF2F; /* green glow */
}

.navbar-right a {
    display: flex;
    align-items: center;
    color: #2FFF2F; /* green */
    text-decoration: none;
    gap: 0.5rem;
    transition: 0.2s ease-in-out;
}

.navbar-right a:hover {
    color: #FF3B3B; /* Christmas red */
    text-shadow: 
        0 0 5px #FF3B3B,
        0 0 15px #FF3B3B; /* red glow */
    transform: scale(1.1);
}

.navbar-right img {
    height: 20px;
    width: 20px;
}

.navbar-right .label {
    font-weight: bold;
}

/* Adjust container margin to account for navbar */
.container {
    margin-left: 0 !important;
    width: 100% !important;
    margin-top: 70px;
}
