/* Language bar */
.language-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-bar .lang-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-bar .lang-link:hover,
.language-bar .lang-link.active {
    color: #007bff;
    font-weight: 600;
}

/* Logout button styling */
.header-btn.logout-btn {
    background: #dc3545;          /* red color - danger/logout feel */
    border-color: #dc3545;
    color: white;
}

.header-btn.logout-btn:hover {
    background: #c82333;
    border-color: #bd2130;
    color: white;
}

/* Optional - smaller top bar padding */
.header-top {
    padding: 8px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}