.sn-donations-container {
    max-width: 800px;
    margin: 30px auto;
}

/* Un élément */
.sn-donation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.sn-donation-item:last-child {
    border-bottom: none;
}

/* Avatar */
.sn-donor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fee2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sn-avatar-icon {
    width: 28px;
    height: 28px;
    fill: #ef4444;
}

/* Texte gauche */
.sn-donation-info {
    flex: 1;
}

.sn-donor-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.sn-donation-cause {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Montant à droite */
.sn-donation-right {
    text-align: right;
    flex-shrink: 0;
}

.sn-donation-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.sn-donation-date {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ===============================
   ONGLET RETRAITS – SCOPE STRICT
   =============================== */

#projects__three .withdrawals-list {
    padding: 20px 30px;
}

/* Item */
#projects__three .withdrawal-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #f3f4f6;
}

#projects__three .withdrawal-item:last-child {
    border-bottom: none;
}

/* Icône */
#projects__three .withdrawal-icon {
    width: 40px;
    height: 40px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#projects__three .icon-svg {
    width: 20px;
    height: 20px;
    fill: #6366f1;
}

/* Infos */
#projects__three .withdrawal-info {
    flex: 1;
}

#projects__three .withdrawal-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

#projects__three .withdrawal-date {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* Partie droite */
#projects__three .withdrawal-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

/* Montant */
#projects__three .withdrawal-amount {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    min-width: 120px;
    text-align: right;
}

/* Badge statut */
#projects__three .status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid;
    white-space: nowrap;
}

/* États */
#projects__three .status-en-attente {
    background: #fef3c7;
    color: #92400e;
    border-color: #fbbf24;
}

#projects__three .status-validee {
    background: #d1fae5;
    color: #065f46;
    border-color: #10b981;
}

#projects__three .status-rejetee {
    background: #fee2e2;
    color: #991b1b;
    border-color: #ef4444;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    #projects__three .withdrawals-list {
        padding: 15px;
    }

    #projects__three .withdrawal-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    #projects__three .withdrawal-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 8px;
    }

    #projects__three .withdrawal-amount {
        text-align: left;
        min-width: auto;
    }
}


/* Responsive */
@media (max-width: 576px) {
    #projects__three .withdrawals .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #projects__three .withdrawals .right {
        text-align: left;
    }
}


/* Responsive */
@media (max-width: 600px) {

    .sn-donation-item {
        padding: 14px 0;
    }

    .sn-donor-avatar {
        width: 42px;
        height: 42px;
    }

    .sn-avatar-icon {
        width: 24px;
        height: 24px;
    }

    .sn-donor-name {
        font-size: 0.95rem;
    }

    .sn-donation-cause {
        font-size: 0.8rem;
    }

    .sn-donation-amount {
        font-size: 0.95rem;
    }

    .sn-donation-date {
        font-size: 0.75rem;
    }
}
