    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cloudflare-global-panel {
        background: linear-gradient(145deg, rgba(243, 128, 32, 0.08) 0%, rgba(20, 20, 25, 0.6) 100%);
        border: 1.5px solid rgba(243, 128, 32, 0.35);
        border-radius: 18px;
        padding: 22px;
        margin-bottom: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }
    .cloudflare-global-panel::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 130px;
        height: 130px;
        background: radial-gradient(circle, rgba(243, 128, 32, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }
    .cloudflare-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
        border-bottom: 1px solid rgba(243, 128, 32, 0.2);
        padding-bottom: 12px;
    }
    .cloudflare-title {
        color: #f38020;
        font-size: 1.05rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .cf-badge {
        background: #f38020;
        color: #121214;
        font-weight: bold;
        padding: 2px 8px;
        border-radius: 6px;
        font-size: 0.7rem;
    }
    .cf-inputs-grid {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 15px;
        align-items: flex-end;
    }
    @media (max-width: 768px) {
        .cf-inputs-grid {
            grid-template-columns: 1fr;
        }
    }
    .cf-inputs-grid input {
        background: rgba(18, 18, 20, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #fff;
        padding: 10px 14px;
        border-radius: 10px;
        font-size: 0.85rem;
        width: 100%;
        outline: none;
        transition: var(--transition);
    }
    .cf-inputs-grid input:focus {
        border-color: #f38020;
        box-shadow: 0 0 10px rgba(243, 128, 32, 0.15);
    }
    .btn-cf-save {
        background: linear-gradient(135deg, #f38020 0%, #d35400 100%);
        border: none;
        color: #fff;
        font-weight: 700;
        padding: 10px 20px;
        border-radius: 10px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 41px;
    }
    .btn-cf-save:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(243, 128, 32, 0.3);
    }

    .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 input:focus, .search-filter-box select:focus {
        border-color: var(--accent);
    }

    .search-filter-box input {
        flex-grow: 1;
        min-width: 200px;
    }

    .btn-add-server {
        background: linear-gradient(135deg, #00d2d3 0%, #10ac84 100%);
        box-shadow: 0 4px 15px rgba(16, 172, 132, 0.4);
        border: none;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition);
        cursor: pointer;
    }

    .btn-add-server:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 172, 132, 0.6);
    }

    .resource-gauge {
        width: 100%;
        min-width: 120px;
        margin-bottom: 6px;
    }

    .resource-header {
        display: flex;
        justify-content: space-between;
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-bottom: 3px;
    }

    .resource-bar-container {
        height: 6px;
        background: rgba(255,255,255,0.06);
        border-radius: 10px;
        overflow: hidden;
    }

    .resource-bar-fill {
        height: 100%;
        border-radius: 10px;
        width: 0%;
        transition: width 0.8s ease-in-out;
    }

    .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);
        position: relative;
    }

    .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-terminal:hover { background: rgba(0, 210, 211, 0.15); border-color: #00d2d3; color: #00d2d3; }
    .action-btn.btn-reboot:hover { background: rgba(255, 159, 67, 0.15); border-color: #ff9f43; color: #ff9f43; }
    .action-btn.btn-toggle:hover { background: rgba(16, 172, 132, 0.15); border-color: #10ac84; color: #10ac84; }
    .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.7);
        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: 600px;
        max-height: 90vh;
        overflow-y: auto;
        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 {
        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 {
        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);
    }

    /* استایل‌های اختصاصی شبیه‌ساز ترمینال لوکس */
    .terminal-container {
        background: #09090b;
        border: 1.5px solid #18181b;
        border-radius: 12px;
        padding: 15px;
        font-family: 'Courier New', Courier, monospace;
        color: #4ade80;
        font-size: 0.85rem;
        height: 300px;
        overflow-y: auto;
        box-shadow: inset 0 4px 20px rgba(0,0,0,0.8);
        margin-bottom: 15px;
        line-height: 1.5;
        direction: ltr;
        text-align: left;
    }
    .terminal-header-bar {
        background: #18181b;
        border-radius: 12px 12px 0 0;
        padding: 8px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #27272a;
    }
    .terminal-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 6px;
    }
    .btn-action-sync {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-action-sync:hover {
    background: #10b981;
    color: white;
}

/* افکت چرخش در هنگام اجرای همگام‌سازی */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.spinning {
    animation: spin 1s linear infinite;
}
