    .pagination-container {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .page-btn {
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid #E9EAEB;
        cursor: pointer;
        background: #fff;
        font-weight: 500;
    }

    .page-btn.active {
        background: #FFBE08;
        border-color: #FFBE08;
    }

    .campaign-logo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #eee;
    }

    .campaign-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px solid #E9EAEB;
    }

    .campaign-left {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .status {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 20px;
        font-weight: 500;
    }

    .status-green {
        background: #e6f7ee;
        color: #1f9254;
    }

    .status-purple {
        background: #f1e8ff;
        color: #6f42c1;
    }

    .status-gray {
        background: #f2f2f2;
        color: #666;
    }

    .status-red {
        background: #FFF1F3;
        color: #C01048;
    }

    .status-blue {
        background: #EFF8FF;
        color: #175CD3;
    }

    .points {
        font-size: 12px;
        background: #fff1ec;
        color: #ff6a3d;
        padding: 6px 10px;
        border-radius: 20px;
        font-weight: 500;
    }

    .campaign-title {
        font-weight: 600;
        font-size: 14px;
        color: #1a1a1a;
    }

    .campaign-date {
        font-size: 12px;
        color: #717680;
    }

    .campaign-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .campaign-info {
        display: flex;
        flex-direction: column;
    }

    .timer-text {
        font-size: 16px;
        font-weight: 600;
        color: #414651;
        white-space: nowrap;
    }

    .timer-icon {
        width: 32px;
        height: 32px;
        color: #FFDE82;
    }

    .spinner-wrapper {
        grid-column: 1 / -1; 
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 0;
    }

    .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #eee;
        border-top: 4px solid #FFBE08;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }