body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #2e2a5f;
}

.donation-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adjust the gap between rows */
}

.button-row {
    display: flex;
    gap: 5px; /* Adjust the gap between buttons within the same row */
}

.button-row .donation-button {
    flex: 1; /* Make buttons expand equally within each row */
}

.full-width {
    flex: 1 100%; /* Make the 'Other' button take the full width of the row */
}

/* Additional styling for visual improvements */
.donation-button {
    padding: 10px; /* Padding for better button sizing */
    border: 1px solid black; /* Border for better visibility */
    background-color: rgb(241, 78, 69);
    border-color: rgb(241, 78, 69);
    cursor: pointer; /* Pointer cursor on hover */

    line-height: 23px;
    font-size: 18px;
    border-radius: 8px;
    height: 64px;
    min-width: 20%;
    font-weight: 600;
}

.donation-button:hover {
    background-color: green; /* Slightly darker background on hover */
}

.selected {
    background-color: green; /* Background color for selected button */
    color: white; /* Text color for selected button */
}

.height-responsive {
    height: 100%; /* Adjust based on your specific design needs */
    width: auto; /* This will maintain the aspect ratio */
    max-width: 100%; /* Prevent the image from exceeding the bounds of its container */
}
.column-height {
    height: 300px; /* Example fixed height for columns to show responsive behavior */
}
.selected {
    background-color: green;
    color: white;
}

.logo-image {
    content: url('/images/mobile-header.png');
}

@media (min-width: 768px) {
    body {
        background: #2e2a5f url('/images/background.jpg') no-repeat top center;
        background-size: 100% auto;
    }

    .logo-image {
        content: url('/images/logo-color.png');
    }

    .container {
        width: 50%; /* Takes up half the screen width */
        margin-right: auto; /* Changed from margin-left to margin-right */
        margin-left: 5%; /* Changed from margin-right to margin-left */
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

}