/* Estilos para el selector de bandera única */
.gd-single-flag-wrapper {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    cursor: pointer;
}

.gd-current-flag {
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gd-current-flag:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.gd-language-dropdown {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 8px;
    display: none;
    width: max-content;
    flex-wrap: wrap;
    gap: 8px;
}

.gd-language-dropdown.show {
    display: flex;
}

.gd-language-option {
    width: 24px;
    height: 24px;
    border: 1px solid #eee;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gd-language-option:hover {
    transform: scale(1.15);
    border-color: #999;
}

/* Ocultar el selector original de GTranslate */
.gt_switcher_wrapper {
    visibility: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}