/* ============================================
   SHORTCODE: Eliminar Registro de Aspirante
   Botón de eliminación con advertencias
   ============================================ */

.revisor-eliminar-registro {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Placeholder */
.eliminar-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #757575;
}

.eliminar-placeholder i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #bdbdbd;
    display: block;
}

.eliminar-placeholder p {
    margin: 0;
    font-size: 14px;
}

/* Contenido activo */
.eliminar-activo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.eliminar-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 13px;
}

.eliminar-info i {
    font-size: 20px;
    flex-shrink: 0;
}

.eliminar-info p {
    margin: 0;
}

/* Botón de eliminar */
.btn-eliminar-registro {
    background: #f44336;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.btn-eliminar-registro:hover:not(:disabled) {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

.btn-eliminar-registro:active:not(:disabled) {
    transform: translateY(0);
}

.btn-eliminar-registro:disabled {
    background: #e0e0e0;
    color: #9e9e9e;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-eliminar-registro i {
    font-size: 16px;
}

/* Modales */
.modal-eliminar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.modal-eliminar-contenido {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-eliminar-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-eliminar-header i {
    font-size: 24px;
    color: #f44336;
}

.modal-eliminar-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.modal-eliminar-body {
    padding: 24px;
}

.modal-eliminar-body p {
    margin: 0 0 12px 0;
    color: #424242;
    line-height: 1.6;
}

.modal-eliminar-body p:last-child {
    margin-bottom: 0;
}

.text-danger {
    color: #f44336 !important;
    font-weight: 600;
}

.correo-display {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 600;
    color: #1e88e5;
    text-align: center;
    border: 2px solid #e0e0e0;
    margin-top: 8px;
}

.modal-eliminar-footer {
    padding: 16px 24px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancelar {
    background: #e0e0e0;
    color: #424242;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-cancelar:hover {
    background: #d5d5d5;
}

.btn-continuar {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-continuar:hover {
    background: #f57c00;
}

.btn-eliminar-final {
    background: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn-eliminar-final:hover {
    background: #d32f2f;
}

.btn-eliminar-final i {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-eliminar-contenido {
        width: 95%;
        margin: 0 10px;
    }
    
    .modal-eliminar-footer {
        flex-direction: column;
    }
    
    .btn-cancelar,
    .btn-continuar,
    .btn-eliminar-final {
        width: 100%;
        justify-content: center;
    }
}
