
    /* === START: Pagination Styles === */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .ida-pg-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 20px;
        flex-wrap: wrap;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .ida-pg-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 16px;
        background: rgba(162, 155, 254, 0.1);
        border: 2px solid rgba(162, 155, 254, 0.3);
        border-radius: 12px;
        color: #a29bfe;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        user-select: none;
    }

    .ida-pg-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(162, 155, 254, 0.2), transparent);
        transition: left 0.5s;
    }

    .ida-pg-btn:hover::before {
        left: 100%;
    }

    .ida-pg-btn:hover {
        background: rgba(162, 155, 254, 0.2);
        border-color: #a29bfe;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(162, 155, 254, 0.3);
    }

    .ida-pg-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(162, 155, 254, 0.2);
    }

    .ida-pg-btn.active {
        background: #a29bfe;
        border-color: #a299fe; /* Note: originally #a29bfe, fixed to match consistency */
        color: white;
        box-shadow: 0 6px 20px rgba(162, 155, 254, 0.4);
    }

    .ida-pg-btn.active:hover {
        background: #9085f2;
        border-color: #9085f2;
        transform: translateY(-1px);
    }

    .ida-pg-btn.disabled {
        opacity: 0.4;
        cursor: not-allowed;
        pointer-events: none;
    }

    .ida-pg-btn.nav-btn {
        background: rgba(162, 155, 254, 0.15);
        border-color: rgba(162, 155, 254, 0.4);
    }

    .ida-pg-btn.nav-btn:hover {
        background: rgba(162, 155, 254, 0.25);
    }

    .ida-pg-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        color: #a29bfe;
        font-weight: 600;
        font-size: 16px;
        opacity: 0.6;
    }

    @media (max-width: 768px) {
        .ida-pg-container {
            gap: 6px;
            padding: 15px;
        }
        .ida-pg-btn {
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            font-size: 13px;
            border-radius: 10px;
        }
        .ida-pg-dots {
            min-width: 40px;
            height: 40px;
        }
    }

    @media (max-width: 480px) {
        .ida-pg-container {
            gap: 4px;
            padding: 10px;
        }
        .ida-pg-btn {
            min-width: 36px;
            height: 36px;
            padding: 0 10px;
            font-size: 12px;
            border-radius: 8px;
        }
        .ida-pg-dots {
            min-width: 36px;
            height: 36px;
            font-size: 14px;
        }
    }

    .ida-pg-btn:hover {
        animation: pulse 0.3s ease-in-out;
    }

    @keyframes pulse {
        0% { transform: translateY(-2px) scale(1); }
        50% { transform: translateY(-2px) scale(1.05); }
        100% { transform: translateY(-2px) scale(1); }
    }

    .ida-pg-btn.active {
        animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from { box-shadow: 0 6px 20px rgba(162, 155, 254, 0.4); }
        to { box-shadow: 0 6px 25px rgba(162, 155, 254, 0.6); }
    }
    /* === END: Pagination Styles === */
