/* ESTILOS EXCLUSIVOS DEL PLUGIN */
.see-container,
.see-mis-evaluaciones,
.see-encuesta-publica {
    background: #0a192f;
    color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* TABS */
.see-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #1a2c4e;
    padding-bottom: 0;
}

.see-tab-btn {
    background: transparent;
    color: #ccd6f6;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.see-tab-btn:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.see-tab-btn.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    position: relative;
}

.see-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.see-tab-content {
    display: none;
}

.see-tab-content.active {
    display: block;
}

/* FORMULARIOS */
.see-form-crear {
    background: #112240;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid #1a2c4e;
}

.see-form-crear h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 24px;
    border-left: 4px solid #ffd700;
    padding-left: 15px;
    margin-top: 0;
}

.see-form-crear input,
.see-form-crear textarea,
.see-form-crear select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #0a192f;
    border: 1px solid #1a2c4e;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
}

.see-form-crear input:focus,
.see-form-crear textarea:focus,
.see-form-crear select:focus {
    outline: none;
    border-color: #ffd700;
}

/* PREGUNTAS */
.see-pregunta-item {
    background: #0a192f;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #1a2c4e;
}

.see-pregunta-item:hover {
    border-color: #ffd700;
}

.see-opcion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px;
    background: #112240;
    border-radius: 6px;
}

.see-opcion-item input {
    flex: 1;
    margin-bottom: 0;
}

/* BOTONES AMARILLOS */
.see-container button:not(.see-boton-azul):not(.see-abrir-modal-evaluaciones):not(.see-abrir-modal-encuestas):not(.see-abrir-todas-encuestas),
.see-mis-evaluaciones button:not(.see-boton-azul),
.see-encuesta-publica button:not(.see-boton-azul),
.see-agregar-pregunta,
.see-guardar,
.see-asignar,
.see-ver-respuestas,
.see-generar-qr,
.see-responder-evaluacion,
.see-responder-encuesta-btn,
.see-enviar-respuesta,
.see-agregar-opcion,
.see-page-btn,
#confirmar-asignar {
    background: #ffd700 !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    margin: 5px !important;
}

.see-container button:not(.see-boton-azul):hover,
.see-mis-evaluaciones button:not(.see-boton-azul):hover,
.see-encuesta-publica button:not(.see-boton-azul):hover {
    background: #e6c200 !important;
    transform: translateY(-2px);
}

/* BOTONES AZULES */
.see-boton-azul,
.see-abrir-modal-evaluaciones,
.see-abrir-modal-encuestas,
.see-abrir-todas-encuestas {
    background: #1e3a5f !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}

.see-boton-azul:hover,
.see-abrir-modal-evaluaciones:hover,
.see-abrir-modal-encuestas:hover,
.see-abrir-todas-encuestas:hover {
    background: #2a4a7a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
}

/* CONTENEDOR DE BOTONES */
.see-mis-items {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.see-mis-items button {
    flex: 1;
    min-width: 200px;
}

/* BOTONES DE ELIMINACIÓN */
.see-eliminar-pregunta,
.see-eliminar-opcion {
    background: #dc3545 !important;
    color: white !important;
    border-color: #000000 !important;
}

/* TABLAS */
.see-tabla-container {
    background: #112240;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #1a2c4e;
    margin-top: 20px;
}

.see-buscador {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: #0a192f;
    border: 1px solid #1a2c4e;
    border-radius: 8px;
    color: #ffffff;
    box-sizing: border-box;
}

.see-tabla {
    width: 100%;
    border-collapse: collapse;
}

.see-tabla th,
.see-tabla td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #1a2c4e;
}

.see-tabla th {
    background: #0a192f;
    color: #ffd700;
}

.see-tabla tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* MODALES */
.see-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.see-modal-content {
    background: #112240;
    margin: 5% auto;
    padding: 25px;
    width: 90%;
    max-width: 800px;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 16px;
    border: 1px solid #ffd700;
    color: #ffffff;
}

.see-modal-close {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #ccd6f6;
    transition: all 0.3s ease;
}

.see-modal-close:hover {
    color: #ffd700;
    transform: rotate(90deg);
}

/* ENCUESTAS PÚBLICAS */
.see-encuesta-publica {
    max-width: 800px;
    margin: 40px auto;
}

.see-campos-personales {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: #112240;
    border-radius: 12px;
}

.see-campos-personales input {
    padding: 10px;
    background: #0a192f;
    border: 1px solid #1a2c4e;
    border-radius: 6px;
    color: white;
}

.see-pregunta-publica {
    margin-bottom: 20px;
    padding: 15px;
    background: #112240;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.see-pregunta-publica label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffd700;
}

.see-pregunta-publica input[type="radio"] {
    margin-right: 8px;
    margin-left: 15px;
}

.see-pregunta-publica textarea {
    width: 100%;
    padding: 10px;
    background: #0a192f;
    border: 1px solid #1a2c4e;
    border-radius: 6px;
    color: white;
    box-sizing: border-box;
}

/* DETALLES DE RESPUESTAS */
.see-respuesta-detalle {
    background: #0a192f;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.see-respuesta-detalle strong {
    color: #ffd700;
    display: block;
    margin-bottom: 8px;
}

/* ESTADOS */
.see-estado-pendiente {
    background: #ff9800;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
}

.see-estado-completado {
    background: #4caf50;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
}

.see-fila-respuesta {
    cursor: pointer;
    transition: background 0.3s ease;
}

.see-fila-respuesta:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* PAGINACION */
.see-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ADJUNTOS */
.see-adjunto {
    margin: 15px 0;
    padding: 10px;
    background: #0a192f;
    border-radius: 8px;
    text-align: center;
}

.see-descargar-adjunto {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.see-descargar-adjunto:hover {
    text-decoration: underline;
}

/* MENSAJE DE LOGIN */
.see-login-required {
    background: #112240;
    border: 1px solid #ffd700;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #ffd700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .see-container,
    .see-encuesta-publica {
        padding: 15px;
    }
    
    .see-campos-personales {
        grid-template-columns: 1fr;
    }
    
    .see-tabs {
        flex-direction: column;
    }
    
    .see-tab-btn {
        text-align: center;
    }
    
    .see-acciones {
        display: flex;
        flex-direction: column;
    }
    
    .see-mis-items {
        flex-direction: column;
    }
    
    .see-mis-items button {
        width: 100%;
    }
    
    .see-modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* SCROLLBAR PERSONALIZADA */
.see-modal-content::-webkit-scrollbar {
    width: 8px;
}

.see-modal-content::-webkit-scrollbar-track {
    background: #0a192f;
    border-radius: 10px;
}

.see-modal-content::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 10px;
}

.see-modal-content::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}