/* modals.css - VERSIÓN LIMPIA */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.modal-buttons button {
    flex: 1;
}

.verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.verification-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 550px;
    max-width: 90%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.verification-content h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
    font-weight: 700;
}

.verification-details {
    margin: 25px 0;
    line-height: 1.6;
    color: #2c3e50;
    font-size: 15px;
}

.verification-status {
    padding: 16px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.verification-status.success {
    background: #f2fbf2;
    color: #27ae60;
    border-left: 5px solid #27ae60;
}

.verification-status.error {
    background: #fdf2f2;
    color: #e74c3c;
    border-left: 5px solid #e74c3c;
}

.verification-status.info {
    background: #e9f7fe;
    color: #3498db;
    border-left: 5px solid #3498db;
}
