body {
    margin: 0px;
    padding: 0px;
    height: 100%;
}

.row{
    min-width: 100%;
}
.sidebar {
    height: 100vh; 
    background: linear-gradient(25deg, #ff0400 -7.54%, #740200 104.18%);
    display: flex; 
    justify-content: center;
    align-items: center;
}

.sidebar img {
    max-width: 100%; 
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
/* .form {
    width: 60%; 
} */

@media (max-width: 767px) {
    .sidebar {
        height: auto;
    }
    .sidebar img {
        max-width: 40%;
        padding: 5%; 
        margin-left: 30%;
    }
    /* .form {
        width: 100%; 
    } */
    
}
.submit {
    width: 100%;
    height: 60px;
    border-radius: 8px;
    background: rgba(61, 146, 101, 1);
    border: none;
    padding: 0 30px;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 700;
    line-height: 29.5px;
    text-align: center;
    color: rgba(255, 255, 255, 1);

}

.submit:hover {
    background: rgb(4, 28, 15);

}

/* Modal Custom Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa; /* Light background for the modal */
}

.modal-header {
    background-color: #007bff; /* Blue background for the header */
    color: white; /* White text */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 15px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-close {
    background-color: transparent;
    border: none;
    color: white; /* White close button */
    font-size: 1.25rem;
}

.modal-body {
    padding: 30px;
    text-align: center;
    font-size: 1.1rem;
}

/* QR Code Styling */
.qr-code {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    display: block;
    border: 5px solid #007bff; /* Blue border around the QR code */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-footer {
    background-color: #f1f1f1;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 15px;
    justify-content: center;
}

/* Footer button styling */
.modal-footer .btn {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.modal-footer .btn:hover {
    background-color: #0056b3;
}

.pament-done{
    background-color: green !important;
}
.cancel-payment{
    background-color: red !important;
}
/* Make the modal responsive */
@media (max-width: 576px) {
    .modal-content {
        padding: 20px;
        border-radius: 10px;
    }

    .qr-code {
        width: 150px;
        height: 150px;
    }

    .modal-title {
        font-size: 1.25rem;
    }
}
