/* Spenden-Seite Styling */
.donation-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Desktop: Alle Boxen nebeneinander */
.donation-method {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 250px; /* Einheitliche Höhe für alle Boxen */
}

/* QR-Code */
.donation-qr {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 10px auto;
}

/* Adressblock */
.donation-address {
    font-size: 14px;
    word-break: break-all;
    cursor: pointer;
    background: #f3f3f3;
    padding: 5px;
    border-radius: 4px;
    display: inline-block;
}

.donation-address:hover {
    background: #ddd;
}

/* Mobile Ansicht: Spendenboxen untereinander */
@media (max-width: 768px) {
    .donation-container {
        flex-direction: column;
        align-items: center;
    }

    .donation-method {
        width: 90%;
    }
}