

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50;
    padding: 1rem 2rem;
    border-bottom: 1px solid #bdc3c7;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.navbar-right {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #ecf0f1;
    text-decoration: underline;
    text-decoration-color: white;
}
