/* =======================================
   SX Site Custom
   ======================================= */
   
 /* === SareeXchange Filter Tabs – Theme Override === */

.sx-filter-bar {
    margin: 0 0 20px;
}

.sx-filter-label {
    font-weight: 600;
    margin-right: 10px;
    color: #222;
}

.sx-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Inactive tab */
.sx-filter-tab {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #f5f5f5 !important;
    color: #222 !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* Active tab */
.sx-filter-tab.active {
    background: #222222 !important;
    color: #fff !important;
    border-color: #222222 !important;
}

/* Hover */
.sx-filter-tab:hover {
    background: #eaeaea;
}

/* Mobile scroll */
@media (max-width: 768px) {
    .sx-filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

.aps-status {
    max-width: 700px;
    margin: 40px auto;
    padding: 24px;
    border-radius: 8px;
    background: #fafafa;
}

.aps-pending {
    border-left: 5px solid #27ae60;   /* green */
    background: #eefaf3;             /* light green */
}


.aps-action {
    border-left: 5px solid #e74c3c;
    background: #fff3f3;
}

.aps-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    background: #9335B6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}

.aps-warning {
    border-left: 5px solid #f39c12;
    background: #fff8e6;
}

.aps-btn-secondary {
    background: #f39c12;
}

.aps-btn,
.aps-btn:visited {
    color: #ffffff !important;
}

.aps-btn:hover,
.aps-btn:focus {
    color: #ffffff !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .sx-filter-tab {
        padding: 4px 10px !important;  /* ↓ height & width */
        font-size: 12px !important;    /* ↓ text size */
        line-height: 1.2;
    }
}

