.RadiPaymentContent {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#RadiPayment_PaymentBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*background: #f1f1f1;*/
    padding: 1rem;
    border-radius: 10px;
    max-width: 500px;
}

.RadiPayment_Payment_card {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    background: #fff;
}

.RadiPayment_Payment_card-header {
    position: relative;
    padding: 2rem 1rem 4rem;
    text-align: center;
    color: #fff;
}

.RadiPayment_Payment_card-header.success {
    background-color: #28a745;
}

.RadiPayment_Payment_card-header.error {
    background-color: #dc3545;
}

.RadiPayment_Payment_card-header .wave {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 60px;
}

.RadiPayment_Payment_card-header .wave img{
    height:100%;
    width:100%;
}

.RadiPayment_Payment_card-body {
    padding: 1rem;
    text-align: center;
    color: #555;
}

.RadiPayment_Payment_card-footer {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.RadiPayment_Payment_card-footer button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-close {
    background: #ddd;
    color: #333;
}

.btn-close:hover {
    background: #bbb;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-error {
    background: #dc3545;
    color: white;
}

.btn-error:hover {
    background: #c82333;
}

.alert, .btn {
    border-radius: 8px;
}