
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .search-filter-box {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        width: 100%;
        background: rgba(30,30,35,0.5);
        border: 1px solid var(--border);
        padding: 12px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .search-filter-box input, .search-filter-box select {
        background: #121214;
        border: 1px solid var(--border);
        color: #fff;
        padding: 8px 15px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-family: inherit;
        outline: none;
        transition: var(--transition);
    }

    .search-filter-box select option, .form-group select option {
        background-color: #151518 !important;
        color: #ffffff !important;
    }

    .search-filter-box input:focus, .search-filter-box select:focus {
        border-color: var(--accent);
    }

    .search-filter-box input {
        flex-grow: 1;
        min-width: 200px;
    }

    .btn-add-user {
        background: linear-gradient(135deg, var(--accent) 0%, #ff6b81 100%);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
        border: none;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition);
        cursor: pointer;
    }

    .btn-add-user:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }

    .traffic-progress-container {
        width: 100%;
        min-width: 120px;
    }

    .traffic-progress {
        height: 6px;
        background: rgba(255,255,255,0.08);
        border-radius: 10px;
        overflow: hidden;
        margin-top: 4px;
    }

    .traffic-bar {
        height: 100%;
        background: linear-gradient(90deg, #00d2d3, #10ac84);
        border-radius: 10px;
    }

    .action-btn-group {
        display: flex;
        gap: 8px;
        justify-content: center;
    }

    .action-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        background: rgba(255,255,255,0.02);
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
    }

    .action-btn:hover {
        color: #fff;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    }

    .action-btn.btn-profile:hover { background: rgba(0, 210, 211, 0.15); border-color: #00d2d3; color: #00d2d3; }
    .action-btn.btn-renew:hover { background: rgba(255, 159, 67, 0.15); border-color: #ff9f43; color: #ff9f43; }
    .action-btn.btn-toggle:hover { background: rgba(74, 105, 189, 0.15); border-color: #4a69bd; color: #4a69bd; }
    .action-btn.btn-edit:hover { background: rgba(24, 220, 255, 0.15); border-color: #18dcff; color: #18dcff; }
    .action-btn.btn-delete:hover { background: rgba(255, 107, 107, 0.15); border-color: #ff6b6b; color: #ff6b6b; }

    .row-disabled {
        opacity: 0.4;
        pointer-events: none;
    }
    .spin-animation {
        animation: spin 1s linear infinite;
    }
    @keyframes spin {
        100% { transform: rotate(360deg); }
    }

    /* استایل مودال شیشه‌ای */
    .custom-modal {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .custom-modal.active {
        opacity: 1;
        pointer-events: auto;
    }

    .modal-content {
        background: #151518;
        border: 1px solid var(--border);
        border-radius: 20px;
        width: 100%;
        max-width: 550px;
        padding: 25px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        transform: scale(0.9);
        transition: transform 0.3s ease;
    }

    .custom-modal.active .modal-content {
        transform: scale(1);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .modal-close {
        background: none;
        border: none;
        color: var(--text-muted);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .form-group-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-muted);
    }

    .form-group input, .form-group select {
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 10px;
        color: #fff;
        font-family: inherit;
        outline: none;
    }

    .form-group input:focus, .form-group select:focus {
        border-color: var(--accent);
    }

    /* پاپ‌آ‌پ لوکس اختصاصی */
    .fancy-alert-overlay {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10001;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .fancy-alert-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    .fancy-alert-box {
        background: #151518;
        border: 1.5px solid rgba(255, 107, 107, 0.3);
        box-shadow: 0 15px 50px rgba(255, 107, 107, 0.1);
        border-radius: 20px;
        width: 90%;
        max-width: 450px;
        padding: 30px;
        text-align: center;
        transform: scale(0.85);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .fancy-alert-overlay.active .fancy-alert-box {
        transform: scale(1);
    }
    .fancy-alert-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 107, 107, 0.12);
        color: #ff6b6b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        border: 1px solid rgba(255, 107, 107, 0.25);
    }
    .fancy-alert-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-top: 25px;
    }
    .fancy-btn {
        padding: 10px 24px;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
        border: none;
        transition: var(--transition);
    }
    .fancy-btn-confirm {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
        color: #fff;
    }
    .fancy-btn-confirm:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(238, 82, 83, 0.4);
    }
    .fancy-btn-cancel {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        border: 1px solid var(--border);
    }
    .fancy-btn-cancel:hover {
        background: rgba(255, 255, 255, 0.1);
    }

