#footer-bar {
    visibility: hidden;
}

.donor-scroll {
    max-height: 65vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ---- Baris donatur ---- */
.donor-row {
    padding: 11px 2px;
}
.donor-row + .donor-row {
    border-top: 1px solid rgba(0, 0, 0, .06);
}
.theme-dark .donor-row + .donor-row {
    border-top-color: rgba(255, 255, 255, .07);
}
.donor-avatar {
    width: 42px;
    height: 42px;
    object-fit: cover;
}
.donor-amount {
    font-size: 12.5px;
    font-weight: 700;
    color: #1c8f63;
    background: rgba(47, 179, 128, .1);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ---- Skeleton loading ---- */
.skeleton {
    position: relative;
    overflow: hidden;
    background: #e9ecef;
    border-radius: 8px;
}
.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    animation: donors-shimmer 1.4s infinite;
}
.theme-dark .skeleton {
    background: #2a2f36;
}
.theme-dark .skeleton::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
}
@keyframes donors-shimmer {
    100% { transform: translateX(100%); }
}
