/**
 * WP Translate Frontend Styles
 */

/* Language Switcher Widget */
.wp-translate-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.wp-translate-switcher a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.wp-translate-switcher a:hover {
    background: #f0f0f0;
    color: #05bbc7;
}

.wp-translate-switcher a.active {
    background: #05bbc7;
    color: white;
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .wp-translate-switcher {
        justify-content: center;
    }
}
