/*
Theme Name: Shivjayanti Ulwe
Theme URI: https://shivjayantiulwe.com
Author: Shivjayanti Committee
Author URI: https://shivjayantiulwe.com
Description: A premium theme for Shivjayanti Utsav celebrations in Ulwe, Navi Mumbai
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shivjayanti
Tags: event, cultural, community, responsive
*/

:root {
    --primary-color: #FF6600;
    --secondary-color: #FF9900;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.header-topbar {
    background: #fff8f0;
    color: var(--dark-color);
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 2px solid var(--primary-color);
}

.topbar-inner {
    display: flex;
    align-items: center;
    gap: 0;
}

.topbar-left,
.topbar-right {
    width: 50%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.topbar-phone {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.topbar-phone:hover {
    color: var(--primary-color);
}

.topbar-icon {
    font-size: 1rem;
}

.topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Google Translate in top bar */
.topbar-right #google_translate_element {
    display: inline-block;
}

.topbar-right .goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
    margin: 0 !important;
}


.topbar-right .goog-te-gadget>span {
    display: none !important;
}

.topbar-right .goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 5px 12px !important;
    border-radius: 4px !important;
    border: 1px solid var(--primary-color) !important;
    background: var(--white) !important;
    color: var(--dark-color) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.topbar-right .goog-te-gadget .goog-te-combo:hover {
    background: #fff0e0 !important;
}


/* Hide Google Translate banner */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* ===== MAIN HEADER ===== */
.site-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 2100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* =============================================
   DESKTOP HORIZONTAL NAV (≥ 992px)
   ============================================= */
.nav-wrapper-desktop {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-links-desktop>li {
    position: relative;
}

.nav-links-desktop>li>a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-links-desktop>li>a:hover,
.nav-links-desktop>li.current-menu-item>a,
.nav-links-desktop>li.current-menu-ancestor>a {
    background: rgba(255, 255, 255, 0.2);
}

/* ---- Dropdown Submenu ---- */
.nav-links-desktop .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 3000;
    border-top: 3px solid var(--primary-color);
}

.nav-links-desktop li:hover>.sub-menu,
.nav-links-desktop li:focus-within>.sub-menu {
    display: block;
}

.nav-links-desktop .sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-links-desktop .sub-menu li a:hover {
    background: #fff3e6;
    color: var(--primary-color);
}

/* Dropdown arrow indicator */
.nav-links-desktop>li.menu-item-has-children>a::after {
    content: ' ▾';
    font-size: 0.75rem;
    opacity: 0.8;
}

/* =============================================
   HAMBURGER (hidden on desktop)
   ============================================= */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2200;
    border-radius: 6px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger-menu span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
}

/* =============================================
   FULL-SCREEN MOBILE NAV (hidden on desktop)
   ============================================= */
.nav-wrapper-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 60%, #f39c12 100%);
    z-index: 2000;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.45s ease, visibility 0s 0.45s;
    overflow-y: auto;
}

.nav-wrapper-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.45s ease, visibility 0s 0s;
}

/* Close button inside mobile menu */
.nav-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2100;
}

.nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* ---- Mobile Nav Links ---- */
.nav-links-mobile {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 60px 20px 40px;
    gap: 0;
    width: 100%;
    text-align: center;
}

.nav-links-mobile>li {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.nav-wrapper-mobile.active .nav-links-mobile>li {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger */
.nav-links-mobile>li:nth-child(1) {
    transition-delay: 0.08s;
}

.nav-links-mobile>li:nth-child(2) {
    transition-delay: 0.16s;
}

.nav-links-mobile>li:nth-child(3) {
    transition-delay: 0.24s;
}

.nav-links-mobile>li:nth-child(4) {
    transition-delay: 0.32s;
}

.nav-links-mobile>li:nth-child(5) {
    transition-delay: 0.40s;
}

.nav-links-mobile>li:nth-child(6) {
    transition-delay: 0.48s;
}

.nav-links-mobile>li:nth-child(7) {
    transition-delay: 0.56s;
}

.nav-links-mobile>li>a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem;
    padding: 12px 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s;
}

.nav-links-mobile>li>a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile submenu */
.nav-links-mobile .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
    display: block;
}

.nav-links-mobile .sub-menu li a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 6px 20px;
    transition: color 0.2s;
}

.nav-links-mobile .sub-menu li a:hover {
    color: var(--white);
}

/* ===== OVERLAY ===== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* Tablet & Mobile: hide desktop nav, show hamburger */
@media (max-width: 991px) {
    .nav-wrapper-desktop {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .logo {
        font-size: 1.4rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links-mobile>li>a {
        font-size: 1.4rem;
    }

    .topbar-left {
        display: none;
    }

    .topbar-right {
        width: 100%;
        justify-content: center;
    }
}


/* Hero Section */

.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.timer-item span {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.timer-item small {
    font-size: 0.9rem;
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-dark {
    background: var(--dark-color);
    color: var(--white);
    border: 2px solid var(--dark-color);
}

.btn-dark:hover {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}


/* Sections */
.section {
    padding: 80px 0;
}

/* Activity Cards */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.activity-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
}

.activity-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }

    .timer-item span {
        font-size: 2rem;
    }
}

/* WordPress Specific */
.wp-block-image {
    margin: 20px 0;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}




/* ===================================================
   DONATION PAGE — Year-wise Attractive Layout
   =================================================== */

/* Page wrapper */
.donation-page-wrap {
    background: #fdf6ee;
    min-height: 70vh;
    padding-bottom: 80px;
}

/* ---- Hero Banner ---- */
.donation-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 60%, #e74c3c 100%);
    padding: 70px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.donation-hero-inner {
    position: relative;
    z-index: 1;
}

.donation-hero-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.donation-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.donation-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Summary Bar ---- */
.donation-summary-bar {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: -36px auto 48px;
    position: relative;
    z-index: 10;
    max-width: 860px;
}

.dsb-card {
    background: var(--white);
    border-radius: 18px;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    flex: 1;
    min-width: 200px;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.25s, box-shadow 0.25s;
}

.dsb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.dsb-card.dsb-years {
    border-top-color: #8e44ad;
}

.dsb-card.dsb-total {
    border-top-color: #27ae60;
}

.dsb-icon {
    font-size: 2.2rem;
}

.dsb-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.dsb-card.dsb-years .dsb-num {
    color: #8e44ad;
}

.dsb-card.dsb-total .dsb-num {
    color: #27ae60;
}

.dsb-label {
    font-size: 0.82rem;
    color: #999;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Year Block ---- */
.donation-year-block {
    margin-bottom: 50px;
}

.donation-year-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.dyn-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 900;
    padding: 8px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(255, 102, 0, 0.35);
    letter-spacing: 1px;
}

.dyn-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
}

.dyn-sep {
    color: #ccc;
}

.dyn-total strong {
    color: #27ae60;
    font-size: 1.05rem;
}

/* ---- Table Wrapper ---- */
.donation-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

/* ---- Table ---- */
.donation-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.96rem;
}

.donation-table thead tr {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.donation-table thead th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.donation-table tbody tr {
    border-bottom: 1px solid #f5ede3;
    transition: background 0.15s;
}

.donation-table tbody tr.row-even {
    background: #fffaf5;
}

.donation-table tbody tr.row-odd {
    background: var(--white);
}

.donation-table tbody tr:hover {
    background: #fff3e6;
}

.donation-table td {
    padding: 13px 20px;
    color: var(--dark-color);
    vertical-align: middle;
}

/* Donor avatar initial */
.donor-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    margin-right: 10px;
    flex-shrink: 0;
    vertical-align: middle;
    text-transform: uppercase;
}

.col-donor {
    display: flex;
    align-items: center;
}

.col-sr {
    text-align: center;
    width: 60px;
    color: #bbb;
    font-size: 0.88rem;
    font-weight: 600;
}

.col-amount {
    text-align: right;
    font-weight: 800;
    color: #27ae60;
    white-space: nowrap;
    font-size: 1rem;
}

/* Total row */
.donation-table tfoot .total-row {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.donation-table tfoot .total-row td {
    padding: 14px 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.donation-table tfoot .total-row .col-amount {
    color: #2ecc71;
    font-size: 1.05rem;
}

/* ---- Grand Total Bar ---- */
.donation-grand-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 22px 32px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.3);
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.donation-grand-total strong {
    font-size: 1.5rem;
    font-weight: 900;
}

/* ---- Empty State ---- */
.donation-empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 40px;
}

.donation-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.donation-empty p {
    font-size: 1.1rem;
    color: #888;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 768px) {
    .donation-hero-title {
        font-size: 2.2rem;
    }

    .donation-summary-bar {
        margin-top: -24px;
    }

    .dsb-card {
        min-width: 140px;
        padding: 16px 20px;
    }

    .dsb-num {
        font-size: 1.5rem;
    }

    .donation-grand-total {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Responsive: Mobile card layout ===== */
@media (max-width: 600px) {
    .donation-hero {
        padding: 50px 16px 50px;
    }

    .donation-hero-title {
        font-size: 1.8rem;
    }

    .donation-hero-icon {
        font-size: 2.5rem;
    }

    .donation-summary-bar {
        flex-direction: column;
        margin: -20px 0 32px;
    }

    .dsb-card {
        min-width: 100%;
    }

    .donation-year-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Mobile: hide thead, show as cards */
    .donation-table thead {
        display: none;
    }

    .donation-table tbody tr {
        display: block;
        margin-bottom: 14px;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        border: none;
    }

    .donation-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px 16px;
        border-bottom: 1px solid #f5ede3;
        text-align: right;
    }

    .donation-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--primary-color);
        text-align: left;
        flex: 1;
        font-size: 0.85rem;
    }

    .donation-table tbody td.col-sr {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--white);
        font-weight: 800;
        justify-content: center;
        font-size: 0.9rem;
    }

    .donation-table tbody td.col-sr::before {
        display: none;
    }

    .donation-table tbody td.col-donor {
        flex-direction: row-reverse;
    }

    .donation-table tfoot .total-row td {
        display: block;
        text-align: center;
    }
}