<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#paymentCancelModal {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-header h4 {
    margin: auto 0;
    font-weight: bolder;
}

.modal-content {
    background: #fff;
    color: #000;
    padding: 30px 40px;
    border-radius: 8px;
    position: relative;
    top: -10%;
    max-width: 440px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-header .order-info {
    text-align: right;
}

.modal-header .order-info p {
    color: #555;
    font-size: 0.75rem;
    margin: 0;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-body label {
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: bolder;
}

.modal-body input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #777;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.modal-footer button {
    font-size: 0.9rem;
}

.modal-footer button:first-child {
    margin-right: 10px;
}</pre></body></html>