.topbar {
    background-color: #228B22; /* Gold Metal */
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.topbar-left .topbar-text {
    margin-right: 20px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.topbar a:hover {
    color: #228B22; /* Gold Metal */
}

.topbar-separator {
    margin: 0 15px;
    color: #666;
}

/* Social Icons */
.social-icons {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #DC143C; /* Crimson Red */
    color: #fff;
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    display: inline-block;
    position: relative;
    z-index: 9999;
}

.language-btn {
    color: #fff !important;
    text-decoration: none;
    padding: 5px 10px;
    border: none;
    background: transparent;
    font-size: 14px;
}

.language-btn:hover,
.language-btn:focus {
    color: #FFA500 !important;
    background: transparent;
}

.language-btn::after {
    margin-left: 5px;
}

.language-selector .dropdown-menu {
    min-width: 150px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9999 !important;
}

.language-selector .dropdown {
    position: static;
}

.language-selector .dropdown-item {
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
}

.language-selector .dropdown-item:hover {
    background-color: #f8f9fa;
}

.language-selector .dropdown-item i {
    margin-right: 8px;
}

.language-selector .dropdown-item .flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    object-fit: cover;
    border-radius: 2px;
}

.language-selector .dropdown-item.active {
    background-color: #f0f0f0;
    font-weight: 500;
}

.current-lang {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .topbar-left .topbar-text {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .social-icons {
        gap: 5px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .topbar-separator {
        margin: 0 10px;
    }
}

