/* DEL Conference 2026 — Payment Confirmation Modal */

.del-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: del-fade-in 0.25s ease;
}

@keyframes del-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.del-modal-box {
    background: #ffffff;
    border-radius: 10px;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: del-slide-up 0.3s ease;
}

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

/* Header */
.del-modal-header {
    background: #121212;
    padding: 32px 36px 28px;
    text-align: center;
    color: #ffffff;
}

.del-modal-check {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: del-check-pop 0.4s 0.2s both;
}

@keyframes del-check-pop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.del-modal-check svg {
    color: #ffffff;
}

.del-modal-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 6px;
    color: #ffffff;
}

.del-modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Registration number block */
.del-modal-reg-block {
    background: #f4f5f7;
    padding: 20px 36px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.del-modal-reg-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 6px;
}

.del-modal-reg-number {
    font-size: 30px;
    font-weight: bold;
    color: #121212;
    letter-spacing: 2px;
}

/* Details table */
.del-modal-details {
    width: 100%;
    border-collapse: collapse;
    padding: 0 36px;
    display: block;
}

.del-modal-details tr {
    border-bottom: 1px solid #f0f0f0;
}

.del-modal-details tr:last-child {
    border-bottom: none;
}

.del-detail-label {
    padding: 10px 36px 10px;
    font-size: 13px;
    color: #888;
    width: 40%;
    vertical-align: top;
}

.del-detail-value {
    padding: 10px 36px 10px 0;
    font-size: 14px;
    color: #272626;
    font-weight: 500;
}

.del-mono {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
}

/* Email note */
.del-modal-email-note {
    padding: 14px 36px;
    font-size: 13px;
    color: #666;
    background: #fff8e1;
    border-top: 1px solid #eee;
    margin: 0;
}

/* Actions */
.del-modal-actions {
    padding: 20px 36px 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.del-modal-close-btn {
    background: #272626;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    transition: background 0.2s;
}

.del-modal-close-btn:hover {
    background: #1a1d20;
}

/* Responsive */
@media (max-width: 560px) {
    .del-modal-box { border-radius: 8px; }
    .del-modal-header { padding: 24px 20px 20px; }
    .del-modal-reg-block { padding: 16px 20px; }
    .del-detail-label { padding-left: 20px; }
    .del-detail-value { padding-right: 20px; }
    .del-modal-email-note { padding: 12px 20px; }
    .del-modal-actions { padding: 16px 20px 20px; }
    .del-modal-reg-number { font-size: 24px; }
}
