/* ==================== GESCON 5.0 CONTINENTAL PRO v3.8.0 ==================== */

/* ==================== ESTILOS GENERALES ==================== */
.gcontinental-container {
    max-width: 95%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}



















/* ==================== BOTONES ==================== */
.gcontinental-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gcontinental-btn span {
    font-size: 18px;
}

.gcontinental-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gcontinental-btn:active {
    transform: translateY(0);
}

.gcontinental-btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
}

.gcontinental-btn-secondary {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
}

.gcontinental-btn-info {
    background: linear-gradient(135deg, #00BCD4 0%, #0097A7 100%);
    color: white;
}

.gcontinental-btn-success {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    color: white;
}

.gcontinental-btn-warning {
    background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
    color: #333;
}



.gcontinental-btn-instructions {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: white;
}

.gcontinental-btn-calendar {
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
    color: white;
}

/* Botón especial para nueva ventana */
.gcontinental-btn.pulsing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==================== CONTENEDORES DE BOTONES ==================== */
.gcontinental-top-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.gcontinental-button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gcontinental-export-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gcontinental-home-button-container {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.gcontinental-home-note {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.gcontinental-home-description {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== TABLA ==================== */
.gcontinental-table-container {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background: white;
    border: 1px solid #e9ecef;
}

.gcontinental-table-wrapper {
    overflow-x: auto;
    max-width: 100%;
}

.gcontinental-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 1400px;
}

.gcontinental-table th {
    background: linear-gradient(135deg, #1e3c72 0%, #12264f 100%);
    color: white;
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #1e3c72;
    position: sticky;
    top: 0;
    z-index: 10;
    white-space: nowrap;
}

.gcontinental-table td {
    padding: 10px 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
    vertical-align: middle;
    background: white;
}

.gcontinental-table tbody tr:nth-child(even) td {
    background: #f8f9fa;
}

.gcontinental-table tbody tr:hover td {
    background: #e3f2fd;
    transition: background 0.2s;
}

.gcontinental-id {
    font-weight: 700;
    color: #1e3c72;
}

.gcontinental-num {
    font-weight: 700;
    color: #2E7D32;
}

/* ==================== BADGES ==================== */
.gcontinental-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.badge-si {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-no {
    background: #ffebee;
    color: #c62828;
}

.badge-mort {
    background: #ffebee;
    color: #c62828;
}

.badge-sense-mort {
    background: #e8f5e8;
    color: #2e7d32;
}

.badge-categoria {
    background: #e3f2fd;
    color: #1565c0;
}

/* ==================== ACTION BUTTONS ==================== */
.gcontinental-action-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.gcontinental-btn-action {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: #f8f9fa;
    color: #495057;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gcontinental-btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-editar:hover {
    background: #2196F3;
    color: white;
}

.btn-eliminar:hover {
    background: #f44336;
    color: white;
}

/* ==================== TABLE FOOTER ==================== */
.gcontinental-table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.gcontinental-total {
    font-size: 14px;
    color: #666;
}

.gcontinental-total strong {
    color: #1e3c72;
    font-weight: bold;
    margin-left: 5px;
    font-size: 16px;
}

.gcontinental-table-actions {
    display: flex;
    gap: 10px;
}

/* ==================== EMPTY STATE ==================== */
.gcontinental-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.gcontinental-empty-icon {
    font-size: 48px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.gcontinental-empty-state h3 {
    color: #666;
    margin-bottom: 10px;
    font-size: 20px;
}

.gcontinental-empty-state p {
    color: #999;
    margin-bottom: 30px;
}

/* ==================== MODAL ==================== */
.gcontinental-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gcontinental-modal-content {
    background: white;
    margin: 50px auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease;
    overflow: hidden;
}

.gcontinental-modal-calendario {
    max-width: 1100px;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.gcontinental-modal-header {
    background: linear-gradient(135deg, #1e3c72 0%, #12264f 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gcontinental-modal-header-calendario {
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
}

.gcontinental-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gcontinental-modal-close {
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    opacity: 0.8;
}

.gcontinental-modal-close:hover {
    color: #ffeb3b;
    opacity: 1;
    transform: scale(1.1);
}

.gcontinental-modal-body {
    padding: 30px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* ==================== FORMULARIO ==================== */
.gcontinental-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gcontinental-form-group {
    flex: 1;
    min-width: 200px;
}

.gcontinental-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.gcontinental-form-group label::after {
    content: " *";
    color: #f44336;
    opacity: 0.8;
}

.gcontinental-input,
.gcontinental-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
    background: white;
}

.gcontinental-input:focus,
.gcontinental-select:focus {
    outline: none;
    border-color: #FF5722;
    box-shadow: 0 0 0 3px rgba(255,87,34,0.1);
}

.gcontinental-input[readonly],
.gcontinental-select[readonly] {
    background: #f5f5f5;
    color: #666;
    cursor: not-allowed;
}

.gcontinental-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

/* ==================== ALERTAS ==================== */
.gcontinental-alert {
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 5px solid;
}

.alert-warning {
    background: #fff3e0;
    border-left-color: #ff9800;
    color: #ef6c00;
}

/* ==================== INSTRUCCIONES ==================== */
.gcontinental-instrucciones {
    padding: 10px;
}

.instruccio-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #9C27B0;
}

.instruccio-section h4 {
    margin: 0 0 10px 0;
    color: #9C27B0;
    font-size: 16px;
    font-weight: 700;
}

.instruccio-note {
    background: #e3f2fd;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #1e3c72;
    color: #1e3c72;
}

/* ==================== CALENDARIO ==================== */
.gcontinental-calendar-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.gcontinental-calendar-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FF5722;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gcontinental-calendar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gcontinental-calendar-user {
    flex: 1;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #1e3c72;
    letter-spacing: 1px;
}

.gcontinental-calendar-year {
    font-size: 32px;
    font-weight: 900;
    color: #FF5722;
    padding: 0 20px;
}

.gcontinental-calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.gcontinental-calendar-month {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.gcontinental-month-title {
    background: #FF5722;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
}

.gcalendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.gcalendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 5px;
    background: white;
}

.gcalendar-day {
    text-align: center;
    padding: 6px 0;
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s;
}

.gcalendar-day.weekend {
    color: #f44336;
}

.gcalendar-day.concurso {
    background: #1e3c72;
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(30,60,114,0.3);
}

.gcalendar-day.empty {
    background: none;
}

.gcalendar-resumen {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FF5722;
}

.gcalendar-resumen h4 {
    margin: 0 0 15px 0;
    color: #FF5722;
    font-size: 18px;
    font-weight: 700;
}

.gcalendar-resumen-item {
    background: linear-gradient(135deg, #1e3c72 0%, #12264f 100%);
    color: white;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.gcalendar-resumen-item:hover {
    transform: translateX(5px);
}

.gcalendar-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

/* ==================== LOADER ==================== */
.gcontinental-loader {
    text-align: center;
    padding: 60px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FF5722;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================== CLASE PARA NUEVA VENTANA ==================== */
body.gcontinental-nueva-ventana .gcontinental-container {
    max-width: 100%;
    margin: 0;
    padding: 15px;
    border-radius: 0;
    min-height: 100vh;
    box-shadow: none;
}

body.gcontinental-nueva-ventana .gcontinental-header {
    border-radius: 0;
    margin-bottom: 15px;
}

body.gcontinental-nueva-ventana .gcontinental-window-info {
    background: #e3f2fd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #1565c0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.gcontinental-close-window-btn {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%) !important;
    color: white !important;
}

/* ==================== ESTILOS PARA IMPORTACIÓN CSV ==================== */

/* Modal de importación */
#gcontinental-modal-importar .gcontinental-modal-header {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

#gcontinental-modal-importar .gcontinental-modal-content {
    max-width: 600px;
}

/* Input file personalizado */
#csv-file-input {
    width: 100%;
    padding: 12px;
    border: 2px dashed #9C27B0;
    border-radius: 8px;
    background: #f8f5ff;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
}

#csv-file-input:hover {
    border-color: #7B1FA2;
    background: #f0e6ff;
}

#csv-file-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
}

/* Modal de informe */
#gcontinental-modal-informe .gcontinental-modal-header {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

#gcontinental-modal-informe .gcontinental-modal-content {
    max-width: 700px;
}

/* Tarjetas de resumen */
.informe-resumen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.informe-resumen-card {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.informe-resumen-card.total {
    background: #f5f5f5;
}

.informe-resumen-card.nous {
    background: #e8f5e9;
}

.informe-resumen-card.actualitzats {
    background: #fff3e0;
}

.informe-resumen-card.sense-canvis {
    background: #e3f2fd;
}

.informe-resumen-card.errors {
    background: #ffebee;
}

.informe-resumen-numero {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.informe-resumen-numero.total {
    color: #333;
}

.informe-resumen-numero.nous {
    color: #4CAF50;
}

.informe-resumen-numero.actualitzats {
    color: #FF9800;
}

.informe-resumen-numero.sense-canvis {
    color: #2196F3;
}

.informe-resumen-numero.errors {
    color: #f44336;
}

.informe-resumen-etiqueta {
    font-size: 12px;
    color: #666;
}

/* Lista de detalles */
.informe-detalles {
    margin: 20px 0;
}

.informe-detalles h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.informe-detalles-contenedor {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px;
    background: #fafafa;
}

.informe-detalle-item {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.informe-detalle-item:last-child {
    border-bottom: none;
}

.informe-detalle-item.nou {
    color: #4CAF50;
    border-left: 3px solid #4CAF50;
    background: #f1f9f1;
}

.informe-detalle-item.actualitzat {
    color: #FF9800;
    border-left: 3px solid #FF9800;
    background: #fff8f0;
}

.informe-detalle-item.sense-canvi {
    color: #2196F3;
    border-left: 3px solid #2196F3;
    background: #f0f7ff;
}

.informe-detalle-item.error {
    color: #f44336;
    border-left: 3px solid #f44336;
    background: #fff5f5;
}

/* Botón de importar */
#btn-importar-csv {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    color: white;
}

#btn-importar-csv:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

/* ==================== USER BADGE EN TABLA ==================== */
.gcontinental-user-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #1e3c72;
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(30,60,114,0.2);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .gcontinental-table {
        font-size: 12px;
    }
    
    .gcontinental-table th,
    .gcontinental-table td {
        padding: 8px 6px;
    }
    
    .gcontinental-calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .gcontinental-top-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gcontinental-button-group,
    .gcontinental-export-buttons {
        justify-content: center;
    }
    
    .informe-resumen-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gcontinental-container {
        padding: 15px;
    }
    
    
    
    
    
    
    
    .gcontinental-top-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .gcontinental-export-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gcontinental-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .gcontinental-form-group {
        min-width: 100%;
    }
    
    .gcontinental-table {
        font-size: 11px;
    }
    
    .gcontinental-modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .gcontinental-calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .gcontinental-calendar-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .gcontinental-calendar-user {
        font-size: 20px;
    }
    
    .gcontinental-calendar-year {
        font-size: 28px;
    }
    
    .gcontinental-calendar-actions {
        flex-direction: column;
    }
}
/* ==================== PREMIUM REDESIGN CABECERA ==================== */
.gcontinental-header {
    background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
    box-shadow: 0 10px 25px rgba(2, 44, 34, 0.4);
    color: white;
    padding: 0;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gcontinental-header-bg-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
    z-index: 0;
    pointer-events: none;
    animation: glow-pulse 8s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(20px, 20px); }
}

.gcontinental-header-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
}

.gcontinental-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gcontinental-header-logo-container {
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.fcpec-logo-header {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.fcpec-logo-header:hover {
    transform: scale(1.05);
}

.gcontinental-header-title-container h1 {
    margin: 0 0 4px 0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    color: #ffffff !important;
    text-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.gcontinental-subtitle {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gcontinental-header-widgets {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gcontinental-widget-system-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.gcontinental-user-glass-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px 6px 6px;
    border-radius: 30px;
    transition: background 0.2s;
}

.gcontinental-user-glass-widget:hover {
    background: rgba(255, 255, 255, 0.1);
}

.club-avatar-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-glass-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-glass-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.user-glass-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

/* ==================== PREMIUM REDESIGN FOOTER ==================== */
.gcontinental-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
    margin: 20px -20px -20px -20px;
}

.status-bar-left, .status-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-bar-btn-home {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    transition: all 0.2s;
}

.status-bar-btn-home:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.status-bar-text {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.status-dot-pulse-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
}

.status-dot-pulse::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .gcontinental-header-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .gcontinental-header-widgets {
        width: 100%;
        justify-content: space-between;
    }
}

/* Ajuste de ancho completo para la página de concursos continental en el club */
body.page-concursos-continental .gesf-club-main {
    max-width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}
body.page-concursos-continental .gcontinental-container {
    max-width: 100% !important;
}