body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.payment-container {
    background: #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 600px;
    margin: 20px;
}

h1 {
    text-align: center;
}

label {
    display: block;
    margin-top: 10px;
}

input, select {
    width: auto!important;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    width: 200px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #28a745;
    color: white;
    cursor: pointer;
    margin-top: 15px;
    display: block;
}

button:hover {
    background-color: #218838;
}

#emi-options, #payment-result {
    margin-top: 20px;
    font-weight: bold;
}

.radio-option {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.radio-option input {
    margin-right: 10px;
}
