.authvia-pay-page {
    max-width: 520px;
    margin: 40px auto;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.authvia-notice {
    transition: opacity 0.5s ease-out;
}

.authvia-notice.fade-out {
    opacity: 0;
}

.authvia-pay-header {
    margin-bottom: 20px;
    text-align: center;
}

.authvia-pay-header h1 {
    font-size: 24px;
    margin: 0 0 5px;
}

.authvia-pay-header p {
    margin: 0;
    color: #555;
}

.authvia-order-summary {
    margin: 20px 0 25px;
    padding: 12px 15px;
    border-radius: 6px;
    background: #f7f7f7;
    font-size: 14px;
}

.authvia-order-summary strong {
    display: inline-block;
    min-width: 110px;
}

.authvia-card-wrapper {
    margin-bottom: 20px;
}

.authvia-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.authvia-pay-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 4px;
    border: none;
    background: #0071a1;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.authvia-pay-button:hover:not([disabled]) {
    background: #005880;
}

.authvia-pay-button[disabled] {
    opacity: 0.6;
    cursor: default;
}

.authvia-status {
    font-size: 13px;
    color: #555;
}

.authvia-status--error {
    color: #d63638;
}

.authvia-status--success {
    color: #008a20;
}