/* ===== SHARED PAGINATION STYLES - Prefix: fxpg- ===== */
/* Use these classes anywhere pagination is needed across pages */

.fxpg-container {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.04);
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.fxpg-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fxpg-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fxpg-muted {
    color: #6B7280;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.fxpg-strong {
    color: #2D2350;
    font-weight: 900;
    font-size: 13px;
}

.fxpg-pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(75,62,123,.10);
    border: 1px solid rgba(75,62,123,.18);
    color: #4B3E7B;
    font-weight: 900;
    font-size: 12px;
    min-width: 72px;
    text-align: center;
}

.fxpg-btn {
    border-radius: 10px !important;
    border: 1px solid rgba(75,62,123,.30) !important;
    color: #4B3E7B !important;
    font-weight: 900 !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    background: transparent !important;
}

.fxpg-btn:hover:not(:disabled) {
    background: rgba(75,62,123,.08) !important;
}

@media (max-width: 600px) {
    .fxpg-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .fxpg-right {
        justify-content: center;
    }
}
