/**
 * MedGtranslatePro - Horizontal Design CSS
 * @author Mediacom87
 */

.medgtranslatepro-horizontal {
    padding: 10px 0;
}

.gtranslate-horizontal-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gtranslate-label {
    font-weight: 600;
    color: #555;
}

.gtranslate-horizontal-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.gtranslate-horizontal-list li {
    margin: 0;
}

.gtranslate-separator {
    color: #ccc;
    user-select: none;
}

.gtranslate-lang-link {
    display: inline-block;
    padding: 4px 8px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.gtranslate-lang-link:hover,
.gtranslate-lang-link.active {
    background: #667eea;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .gtranslate-horizontal-nav {
        justify-content: center;
    }

    .gtranslate-label {
        width: 100%;
        text-align: center;
        margin-bottom: 8px;
    }

    .gtranslate-horizontal-list {
        justify-content: center;
    }
}
