body {
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.donation-container {
    max-width: 400px; /* Reduced width since the form is gone */
    width: 90%;
}

.qr-section {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 12px; /* Adds the rounded corners from your screenshot */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.qr-placeholder img {
    width: 220px;
    height: 220px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    object-fit: contain;
}

.upi-id {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}