body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
}

.payment-container {
    background-color: #ffffff;
    max-width: 400px;
    margin: 50px auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px 20px 40px;
}

.payment-container h2 {
    color: #60267d;
    margin-bottom: 10px;
}

.total-amount {
    font-size: 24px;
    color: #ea580c;
    margin-bottom: 30px;
}

.pay-button {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ea580c;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.back-button {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #60267d;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.pay-button {
    background-color: #ea580c;
    color: #ffffff;
    margin-right: 10px;
}

.back-button {
    background-color: #ffffff;
    color: #60267d;
}

.back-button:hover,
.pay-button:hover {
    background-color: #522367;
    color: #ffffff;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black color */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999; /* Ensure the backdrop is on top of other content */
}

.loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000
}

.loading-text {
    color: #ffffff; /* Changed text color to white for better visibility */
    font-size: 28px; /* Increased font size */
    font-weight: bold; /* Added bold font-weight */
    margin-top: 10px; /* Added margin to separate text from the loader image */
    margin-bottom: 10px;
}

.loader img {
    width: 50px; /* Adjust the width to make the image smaller */
    height: 50px; /* Adjust the height to make the image smaller */
}