/* Basic styling for the payment container */
.payment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000; /* Assuming the main background is black */
}

/* Styling for payment details */
.payment-details {
    background-color: rgba(0, 0, 0, 0.8); /* Black background with 80% opacity */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 20px;
    margin-top: -200px;
}

/* QR code styling */
.payment-details img {
    width: 200px; /* Adjusted size */
    height: 200px;
    margin: 20px 0;
    border: 4px solid #007bff; /* Blue border around the QR code */
    border-radius: 10px;
    padding: 10px;
    background-color: #fff;
}

/* Heading styling */
h1, h2 {
    color: #fff; /* Change to white for better contrast on dark background */
    margin-bottom: 10px;
}

/* Paragraph styling */
p {
    color: #ccc; /* Change to light gray for better contrast */
    margin: 8px 0;
}

/* Button styling */
button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #0056b3;
}

/* Hide elements */
.hidden {
    display: none;
}

/* Bank details styling */
#bankDetails {
    width: 500px;
    height: 300px; /* Set the bank details section size */
    margin: 20px auto; 
    font-weight: bold;
    padding: 10px; /* Add padding for spacing */
    border: 2px solid #ddd; /* Add border to all sides */
    border-radius: 10px; /* Add border radius */
    color: #ccc; /* Change text color to light gray */
}

/* Center bank details horizontally */
.payment-details {
    text-align: center;
}
