
    .modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-box {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    animation: pop 0.2s ease-in-out;
}

@keyframes pop {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-header {
    padding: 16px;
    background: #2563eb;
    color: #fff;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.modal-body {
    padding: 18px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    background: #f3f4f6;
    border-radius: 10px;
}

.label {
    font-weight: 600;
    color: #555;
}

.value {
    font-weight: 700;
    color: #111;
}

.confirm-text {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.modal-footer {
    display: flex;
    gap: 10px;
    padding: 15px;
}

.btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.btn.primary {
    background: #2563eb;
    color: #fff;
}

.btn.primary:hover {
    background: #1e40af;
}

.btn.secondary {
    background: #e5e7eb;
    color: #111;
}

.btn.secondary:hover {
    background: #d1d5db;
}
