/* EduYa frontend styles - Diseño Fiel a la Imagen */

:root {
    --eduyac-dark-blue: #002561; /* Azul marino del header */
    --eduyac-light-blue: #D8EAF6; /* Fondo del banner de éxito */
    --eduyac-verified-green: #27ae60;
    --eduyac-border-color: #e5e7eb;
    --eduyac-text-main: #1f2937;
    --eduyac-text-muted: #6b7280;
}

/* Contenedor Principal */
.eduyac-search-container {
    max-width: 800px;
    margin: 2rem auto;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Bloque de Búsqueda (Header Azul) */
.eduyac-search-box {
    background: var(--eduyac-dark-blue);
    padding: 1.5rem 2.0rem 4rem 2.0rem;
    border-radius: 8px 8px 0 0;
    text-align: center;
    color: white;
}

.eduyac-search-box h2 {
    color: white !important;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.eduyac-search-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Formulario de búsqueda horizontal */
.eduyac-input-wrapper {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 4px;
    border-radius: 6px;
}

.eduyac-field {
    flex: 1;
    border: none !important;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: var(--eduyac-text-main);
    outline: none;
}

.eduyac-btn {
    background: var(--eduyac-dark-blue);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.eduyac-btn:hover {
    opacity: 0.9;
}

/* Tarjeta de Resultado (Efecto Modal) */
.eduyac-result-card {
    position: relative;
    background: white;
    border: 1px solid var(--eduyac-border-color);
    border-radius: 12px;
    margin-top: -10px; /* Sube un poco para unirse al header */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding-top: 0;
    overflow: visible; /* Importante para que la foto sobresalga */
}

/* Botón cerrar X */
.eduyac-close-btn {
        position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    color: #00317a;
    cursor: pointer;
    z-index: 20;
}

/* Banner de éxito (Franja Celeste) */
.eduyac-success-banner {
    background-color: var(--eduyac-light-blue);
    padding: 1.6rem 1.5rem 2rem 180px;
    display: flex;
    gap: 15px;
    border-radius: 12px 12px 0 0;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-evenly;
}

.eduyac-success-icon {
    color: var(--eduyac-dark-blue);
}

.eduyac-success-icon .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #46b450;
}

.eduyac-success-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--eduyac-dark-blue);
    font-weight: 600;
}

.eduyac-success-text span {
    font-size: 0.9rem;
    color: var(--eduyac-dark-blue);
    opacity: 0.8;
}

/* Foto del Participante (Círculo Flotante) */
.eduyac-participant-photo-wrapper {
    position: absolute;
    left: 25px;
    top: -30px; /* Hace que el círculo sobresalga hacia arriba */
    z-index: 30;
}

.eduyac-participant-photo-wrapper img {
    width: 140px !important;
    height: 140px !important;
    border-radius: 50% !important;
    border: 5px solid white !important;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Tabla de Datos */
.eduyac-card-content {
    padding: 0;
}

.eduyac-result-table {
    width: 100%;
    border-collapse: collapse;
}

.eduyac-result-table td {
    padding: 12px 25px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}

.eduyac-label {
    width: 180px;
    color: var(--eduyac-text-muted);
    font-weight: 500;
}

.eduyac-value {
    color: var(--eduyac-text-main);
}

.eduyac-value strong {
    color: var(--eduyac-dark-blue);
}

/* Badge de Verificado (Check verde) */
.eduyac-tick {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 5px;
}

/* Footer de la tarjeta */
.eduyac-result-footer {
    padding: 1.5rem 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eduyac-footer-code {
    font-size: 1.1rem;
}

.eduyac-blue-text {
    color: var(--eduyac-dark-blue);
    font-weight: 700;
    font-size: 1.3rem;
    margin-left: 10px;
}

/* Botones de acción inferiores */
.eduyac-result-actions {
    display: flex;
    gap: 10px;
}

.eduyac-btn-pdf {
    background: #ff0000 !important; /* Rojo PDF */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.eduyac-btn-print {
    background: var(--eduyac-dark-blue) !important;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 600px) {
    .eduyac-participant-photo-wrapper {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
        margin: -50px 0 10px;
    }
    .eduyac-success-banner {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    .eduyac-result-footer {
        flex-direction: column;
        gap: 15px;
    }
}