/* Table Container */
#DonationWall_wrapper {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

/* Search/filter input styling */
.dataTables_wrapper .dataTables_filter label {
    font-weight: 500;
    float: none;
    text-align: right;
    margin-bottom: 10px;
    color: #333;
}

#DonationWall thead th {
    background: linear-gradient(to bottom, #F4B400, #C48F00); /* light gold → deep amber */
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 12px 16px;
    border-bottom: 2px solid #e0e0e0;
    letter-spacing: 0.5px;
}


/* Table body rows */
#DonationWall tbody tr {
    background-color: #fff; /* clean white */
    color: #333;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Hover effect with smooth transition */
#DonationWall tbody tr:hover {
    background-color: #f0f0f0; /* subtle gray hover */
    transform: translateY(-2px); /* slight lift */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Alternate row shading for subtle contrast */
#DonationWall tbody tr:nth-child(odd) {
    background-color: #fcfcfc; /* very light gray */
}

/* Table body cells */
#DonationWall tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #DonationWall_wrapper {
        padding: 0;
    }

    #DonationWall tbody td, #DonationWall thead th {
        padding: 10px 8px;
        font-size: 13px;
    }
}
