.mi-schnellspende-wrapper {
    width: 100%;
}

.mi-spenden-item {
    margin-bottom: 5px;
}

.mi-spenden-bar {
    height: 60px;
    border: 1px solid #d9d9d9;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 25px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.mi-spenden-bar:hover {
    border-color: #467ff7;
}

.mi-toggle {
    width: 30px;
    font-size: 12px;
    color: #324A6D;
}

.mi-org-name {
    flex: 1;
    font-size: 16px !important;
    font-weight: none;
    color: #324A6D !important;
    text-align: left;
    display: block;
    line-height: 1;
    z-index: 2;
    position: relative;
}

.mi-spenden-actions {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 0;
}

/* Hier: Schriftgröße um 2 Stufen vergrößert */
.mi-betrag-input {
    width: 160px;
    height: 100%;
    border: none !important;
    border-left: 1px solid #d9d9d9 !important;
    padding: 0 15px;
    outline: none !important;
    font-size: 16px; /* vorher 12px -> jetzt 16px */
    text-align: center;
}

.mi-paypal-form {
    height: 100%;
}

/* PayPal Button Standard */
.mi-paypal-button {
    height: 100%;
    padding: 0 30px;
    border: none;
    border-radius: 0 35px 35px 0;
    background: #467ff7;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* Hover-Effekt für PayPal-Button */
.mi-paypal-button:hover {
    background: #467ff7 !important; 
    font-weight: bold;      
    border: none !important; 
}

.mi-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
    font-size: 16px;
}

.mi-accordion-content.open {
    max-height: 200px;
    padding: 15px 20px;
}

@media (max-width: 480px) {

    .mi-spenden-item {
        margin: 0 15px 15px 15px;
        display: flex;
        flex-direction: column;
        border: 2px solid #467ff7 !important;
        border-radius: 35px;
        overflow: hidden;
        background: #fff;
    }

    .mi-spenden-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        border: none !important;
        border-radius: 0;
        overflow: visible;
        padding: 0;
        gap: 0;
        cursor: pointer;
        background: #fff;
        order: 1;
    }

    /* Pfeil ausblenden */
    .mi-toggle {
        display: none !important;
    }

    /* Oberste Reihe */
    .mi-org-name {
        display: block;
        text-align: center !important;
        font-size: 16px;
        font-weight: bold;
        color: #000 !important;
        line-height: 1.2;
        width: 100%;
        padding: 15px 0;
        order: 1;
    }

    /* Beschreibung DIREKT darunter */
    .mi-accordion-content {
        display: none;
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
        box-sizing: border-box;
        line-height: 1.4;
        background-color: #fff;
        color: #000;
        order: 2;
        border-top: 1px solid #f0f0f0;
    }

    .mi-accordion-content.open {
        display: block;
    }

    /* Betrag + PayPal darunter */
    .mi-spenden-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        order: 3;
    }

    .mi-betrag-input {
        width: 100%;
        height: 60px;
        border-radius: 0;
        border: none !important;
        background-color: #f5f5f5 !important;
        font-size: 16px;
        padding: 0 15px;
        box-sizing: border-box;
        outline: none !important;
    }

    .mi-paypal-form {
        width: 100%;
    }

    .mi-paypal-button {
        width: 100%;
        height: 60px;
        background: #467ff7 !important;
        color: white !important;
        font-size: 16px;
        cursor: pointer;
        border: none !important;
        border-radius: 0 0 33px 33px;
    }

    .mi-paypal-button:hover {
        font-weight: bold !important;
        background: #467ff7 !important;
        color: white !important;
        border: none !important;
    }
}
/* =========================================
   SCHNELLSPENDEBOX FINAL DESIGN
========================================= */

.mi-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

/* Box */
.mi-box-item {
    width: 100%;
    min-width: 320px;
    max-width: 320px;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    border-radius: 35px;
    padding: 22px;
    background: linear-gradient(180deg, #f5f5f5 0%, #e9e9e9 100%);
    box-shadow: none !important;
    overflow: hidden;
}

/* Header */
.mi-box-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

/* Name */
.mi-box-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #324A6D;
    flex: 1;
    word-break: break-word;
    white-space: normal;
}

/* Mehr Button */
.mi-box-mehr {
    border: 1px solid #467ff7;
    background: none;
    color: #467ff7;
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    box-shadow: none !important;
}

.mi-box-mehr:hover,
.mi-box-mehr:focus,
.mi-box-mehr:active {
    background: #467ff7 !important;
    color: white !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Betrag */
.mi-box-amount {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 18px;
    line-height: 1;
}

.mi-currency {
    font-size: 30px;
    margin-top: 5px;
    line-height: 1;
    font-weight: bold;
}

.mi-amount-value {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
}

.mi-cents {
    font-size: 20px;
    margin-top: 5px;
    line-height: 1;
    font-weight: bold;
}

/* Slider */
.mi-box-slider {
    width: 100%;
    height: 6px;
    appearance: none;
    -webkit-appearance: none;
    background: #666666;
    border-radius: 999px;
    outline: none;
    margin-bottom: 25px;
    box-shadow: none !important;
}

/* Chrome */
.mi-box-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #467ff7;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: none !important;
}

/* Firefox */
.mi-box-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #467ff7;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: none !important;
}

/* Beschreibung */
.mi-box-description {
    display: none;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
    padding: 14px;
    width: 100%;
    box-sizing: border-box;
    word-break: break-word;
}

.mi-box-description.open {
    display: block;
}

/* Button */
.mi-box-form {
    width: 100%;
    margin-top: 10px;
}

.mi-box-button {
    width: 100%;
    height: 48px;
    border: none !important;
    border-radius: 35px;
    background: #467ff7 !important;
    color: white !important;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
    transition: none !important;
}

/* GANZ WICHTIG: Theme Hover Shadow komplett entfernen */
.mi-box-button:hover,
.mi-box-button:focus,
.mi-box-button:active {
    font-weight: 700;
    background: #467ff7 !important;
    color: white !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
    filter: none !important;
}

/* Platzhalter */
.mi-box-empty {
    min-height: 240px;
    border-radius: 28px;
    background: linear-gradient(180deg, #f5f5f5 0%, #e9e9e9 100%);
}

/* Mobile */
@media (max-width: 480px) {
    .mi-box-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .mi-box-mehr:hover,
    .mi-box-mehr:focus,
    .mi-box-mehr:active {
        background: none !important;
        color: #467ff7 !important;
        border-color: #467ff7 !important;
        box-shadow: none !important;
        outline: none !important;
        transform: none !important;
    }
}

    .mi-box-item {
        min-width: unset;
        max-width: unset;
        width: 100%;
    }
}