.bkash-donation-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bkash-donation-form-container h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.bkash-donation-form-container p {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

.donation-amount-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.donation-amount-options label {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.donation-amount-options input[type="radio"] {
    margin-right: 10px;
}

#custom-amount-container {
    margin-top: 20px;
    display: none;
}

#custom-amount-container input[type="number"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #f9a825;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #e68900;
}

#donation-result {
    margin-top: 20px;
    font-size: 16px;
    color: #d32f2f;
    text-align: center;
}

/*backend form*/
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-switch input:checked+.slider {
    background-color: #28a745;
}

.toggle-switch .slider:before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked+.slider:before {
    transform: translateX(26px);
}