* { margin:0; padding:0; box-sizing:border-box; }
@font-face { font-family:'Vazir'; src:url('../fonts/Vazir.woff2') format('woff2'); }
body { font-family:'Vazir',Tahoma,sans-serif; background:#f4f7fa; direction:rtl; color:#2c3e50; line-height:1.6; }

.auth-container { display:flex; justify-content:center; align-items:center; min-height:100vh; padding:20px; background:linear-gradient(135deg,#3498db,#2c3e50); }
.auth-box { background:#fff; padding:40px 50px; border-radius:16px; box-shadow:0 20px 60px rgba(0,0,0,0.3); width:100%; max-width:420px; }
.auth-box h1 { text-align:center; font-size:28px; color:#2c3e50; margin-bottom:5px; }
.auth-box h2 { text-align:center; font-size:18px; color:#7f8c8d; font-weight:normal; margin-bottom:25px; }

.form-group { margin-bottom:18px; }
.form-group label { display:block; font-weight:bold; margin-bottom:5px; color:#34495e; font-size:14px; }
.form-group input,.form-group select,.form-group textarea { width:100%; padding:10px 14px; border:2px solid #ddd; border-radius:8px; font-size:15px; font-family:inherit; transition:border-color 0.3s; background:#f9fafb; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:#3498db; outline:none; background:#fff; }

.btn { display:inline-block; padding:10px 20px; border:none; border-radius:8px; font-size:15px; font-weight:bold; cursor:pointer; text-decoration:none; text-align:center; transition:all 0.3s; font-family:inherit; }
.btn-primary { background:#3498db; color:#fff; width:100%; }
.btn-primary:hover { background:#2980b9; }
.btn-success { background:#27ae60; color:#fff; }
.btn-success:hover { background:#1e8449; }
.btn-danger { background:#e74c3c; color:#fff; }
.btn-danger:hover { background:#c0392b; }
.btn-secondary { background:#95a5a6; color:#fff; }
.btn-secondary:hover { background:#7f8c8d; }
.btn-admin { background:#8e44ad; color:#fff; padding:6px 15px; border-radius:6px; text-decoration:none; font-size:13px; }
.btn-admin:hover { background:#6c3483; }

.alert { padding:12px 16px; border-radius:8px; margin-bottom:15px; font-size:14px; }
.alert-error { background:#fde8e8; color:#c0392b; border:1px solid #f5c6cb; }
.alert-success { background:#e8f8ed; color:#27ae60; border:1px solid #c3e6cb; }
.alert-info { background:#eaf4ff; color:#2980b9; border:1px solid #bddfff; }

.dashboard-container { max-width:1200px; margin:0 auto; padding:20px; }

/* ============================================================
   HEADER حرفه‌ای (نسخه جدید)
   ============================================================ */

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 25px;
    height: 70px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: nowrap;
    gap: 15px;
}

/* لوگو */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-logo .logo-icon {
    font-size: 28px;
    line-height: 1;
}
.header-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
    letter-spacing: -0.5px;
}
.header-logo .logo-text span {
    color: #2c6b9e;
}
.header-logo .logo-badge {
    background: #2c6b9e;
    color: #fff;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 5px;
    letter-spacing: 0.5px;
}

/* جستجو */
.header-search {
    flex: 1;
    max-width: 480px;
    min-width: 160px;
    position: relative;
    margin: 0 10px;
}
.header-search input {
    width: 100%;
    padding: 8px 16px 8px 40px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 14px;
    background: #f8fafc;
    transition: all 0.3s;
    font-family: inherit;
}
.header-search input:focus {
    border-color: #2c6b9e;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(44, 107, 158, 0.1);
}
.header-search .search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    font-size: 16px;
}
.header-search .search-shortcut {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #ecf0f1;
    color: #7f8c8d;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* بخش راست هدر */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* دکمه‌های اقدام سریع */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-actions .btn-quick {
    background: #f8fafc;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-family: inherit;
}
.header-actions .btn-quick:hover {
    background: #ecf0f1;
}
.header-actions .btn-quick.primary {
    background: #2c6b9e;
    color: #fff;
}
.header-actions .btn-quick.primary:hover {
    background: #1a4a7a;
}
.header-actions .btn-quick .icon {
    font-size: 16px;
}

/* دکمه نوتیفیکیشن */
.notif-wrapper {
    position: relative;
    display: inline-block;
}
.notif-btn {
    background: #f8fafc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notif-btn:hover {
    background: #ecf0f1;
}
.notif-btn .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* منوی کاربر */
.user-menu-wrapper {
    position: relative;
    display: inline-block;
}
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 4px;
    border-radius: 30px;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.user-menu-btn:hover {
    background: #f8fafc;
    border-color: #ecf0f1;
}
.user-menu-btn .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2c6b9e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.user-menu-btn .user-name {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-menu-btn .user-role {
    font-size: 11px;
    color: #95a5a6;
    background: #ecf0f1;
    padding: 1px 10px;
    border-radius: 10px;
    white-space: nowrap;
}
.user-menu-btn .chevron {
    color: #95a5a6;
    font-size: 12px;
    margin-right: 2px;
}

/* Dropdown منوی کاربر */
.user-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid #ecf0f1;
    z-index: 999;
    overflow: hidden;
    padding: 6px 0;
}
.user-dropdown.show {
    display: block;
}
.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.15s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: right;
    font-family: inherit;
}
.user-dropdown .dropdown-item:hover {
    background: #f8fafc;
}
.user-dropdown .dropdown-item .icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}
.user-dropdown .dropdown-divider {
    height: 1px;
    background: #ecf0f1;
    margin: 4px 12px;
}
.user-dropdown .dropdown-item.danger {
    color: #e74c3c;
}
.user-dropdown .dropdown-item.danger:hover {
    background: #fde8e8;
}
.user-dropdown .dropdown-item .badge-admin {
    background: #8e44ad;
    color: #fff;
    font-size: 10px;
    padding: 1px 10px;
    border-radius: 10px;
    margin-right: auto;
}

/* دراپ‌داون نوتیفیکیشن */
.notif-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 360px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid #ecf0f1;
    z-index: 999;
}
.notif-dropdown.show {
    display: block;
}

/* Responsive Header */
@media (max-width: 992px) {
    .header-search {
        max-width: 280px;
    }
    .header-actions .btn-quick .label {
        display: none;
    }
}
@media (max-width: 768px) {
    .dashboard-header {
        padding: 0 15px;
        height: 60px;
        flex-wrap: wrap;
        gap: 8px;
    }
    .header-logo .logo-text {
        font-size: 16px;
    }
    .header-logo .logo-badge {
        display: none;
    }
    .header-search {
        order: 3;
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
    }
    .header-search .search-shortcut {
        display: none;
    }
    .user-menu-btn .user-name {
        max-width: 80px;
        font-size: 13px;
    }
    .user-menu-btn .user-role {
        display: none;
    }
    .header-actions .btn-quick {
        padding: 6px 10px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .user-menu-btn .user-name {
        display: none;
    }
    .header-actions .btn-quick {
        padding: 6px 8px;
    }
    .notif-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}

/* ============================================================
   سایر استایل‌های موجود
   ============================================================ */

.dashboard-content { margin-top: 10px; }

.stats-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; margin-bottom:30px; }
.stat-card { background:#fff; padding:20px; border-radius:12px; text-align:center; box-shadow:0 2px 10px rgba(0,0,0,0.05); transition:transform 0.2s; }
.stat-card:hover { transform:translateY(-3px); }
.stat-number { font-size:32px; font-weight:bold; color:#2c3e50; }
.stat-label { color:#7f8c8d; margin-top:5px; font-size:14px; }

.menu-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:15px; }
.menu-item { background:#fff; padding:20px; border-radius:12px; text-align:center; text-decoration:none; color:#2c3e50; box-shadow:0 2px 10px rgba(0,0,0,0.05); transition:all 0.3s; position:relative; }
.menu-item:hover { transform:translateY(-5px); box-shadow:0 8px 25px rgba(0,0,0,0.1); }
.menu-item .icon { font-size:32px; display:block; margin-bottom:8px; }
.menu-item .title { font-weight:bold; font-size:16px; display:block; }
.menu-item .desc { font-size:12px; color:#7f8c8d; display:block; margin-top:3px; }
.menu-item .badge { position:absolute; top:10px; left:10px; background:#e74c3c; color:#fff; border-radius:50%; padding:2px 10px; font-size:12px; font-weight:bold; }

.project-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; margin-top:15px; }
.project-card { background:#fff; padding:20px; border-radius:12px; box-shadow:0 2px 10px rgba(0,0,0,0.05); border-right:4px solid #3498db; transition:transform 0.2s; }
.project-card:hover { transform:translateY(-3px); }
.project-card h3 { color:#2c3e50; margin-bottom:10px; }
.project-card p { color:#555; margin:3px 0; font-size:14px; }
.project-actions { display:flex; gap:8px; margin-top:12px; flex-wrap:wrap; }
.project-info { background:#fff; padding:20px; border-radius:12px; margin-bottom:20px; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.project-info p { margin:5px 0; }

.price-list-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:20px; margin-top:15px; }
.price-list-card { background:#fff; padding:20px; border-radius:12px; box-shadow:0 2px 10px rgba(0,0,0,0.05); border-right:4px solid #8e44ad; }
.price-list-card h3 { color:#2c3e50; margin-bottom:10px; }
.price-list-card p { color:#555; margin:3px 0; font-size:14px; }
.price-list-actions { margin-top:12px; }

.admin-table { width:100%; border-collapse:collapse; font-size:14px; margin-top:10px; }
.admin-table th { background:#34495e; color:#fff; padding:10px 12px; text-align:right; }
.admin-table td { padding:8px 12px; border-bottom:1px solid #ecf0f1; }
.admin-table tr:hover { background:#f8f9fa; }
.admin-section { background:#fff; border-radius:12px; padding:20px; margin-top:25px; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.admin-section h3 { margin-bottom:10px; }
.table-container { overflow-x:auto; margin-top:10px; }

.status-badge { padding:4px 12px; border-radius:20px; font-size:12px; font-weight:bold; }
.status-active { background:#d5f5e3; color:#1e8449; }
.status-archived { background:#fdebd0; color:#a04000; }
.status-closed { background:#e8daef; color:#6c3483; }

.btn-small { display:inline-block; padding:4px 12px; border-radius:4px; text-decoration:none; font-size:13px; border:none; cursor:pointer; }
.btn-edit { background:#f39c12; color:#fff; }
.btn-delete { background:#e74c3c; color:#fff; }
.btn-view { background:#3498db; color:#fff; }

.tab-container { margin-top:20px; }
.tab-buttons { display:flex; gap:0; border-bottom:2px solid #ddd; flex-wrap:wrap; }
.tab-button { padding:10px 20px; background:#f8f9fa; border:1px solid #ddd; border-bottom:none; border-radius:8px 8px 0 0; cursor:pointer; font-weight:bold; color:#555; transition:all 0.3s; margin-left:3px; font-size:14px; text-decoration:none; }
.tab-button.active { background:#3498db; color:#fff; border-color:#3498db; }
.tab-content { background:#fff; padding:20px; border:1px solid #ddd; border-top:none; border-radius:0 0 8px 8px; min-height:400px; }
.tab-pane { display:none; }
.tab-pane.active { display:block; }

.info-bar { display:flex; justify-content:space-between; background:#ecf0f1; padding:12px 20px; border-radius:8px; margin-bottom:15px; flex-wrap:wrap; gap:10px; }
.price-list-selector { display:flex; gap:10px; align-items:center; margin-bottom:15px; background:#f8f9fa; padding:10px 15px; border-radius:8px; flex-wrap:wrap; }
.price-list-selector select { padding:6px 12px; border-radius:6px; border:1px solid #ddd; font-size:14px; }

.form-inline { display:flex; gap:8px; flex-wrap:wrap; align-items:center; margin:10px 0; }
.form-inline input,.form-inline select { padding:5px 8px; border-radius:4px; border:1px solid #ddd; font-size:13px; }
.form-inline input[type="number"] { width:80px; }

.total-row { font-weight:bold; background:#ecf0f1; }
.total-row td { padding:10px; }

.coeff-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:10px; margin-top:10px; }
.coeff-item { background:#f8f9fa; padding:10px; border-radius:6px; border-right:3px solid #3498db; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:5px; }
.coeff-item .coeff-value { font-weight:bold; color:#2c3e50; }
.coeff-item .coeff-type { font-size:12px; color:#7f8c8d; }
.coeff-edit { display:flex; gap:5px; align-items:center; flex-wrap:wrap; }
.coeff-edit input { width:80px; padding:4px; border-radius:4px; border:1px solid #ddd; }

/* ========== اعلان‌ها ========== */
.notification-wrapper { position:relative; display:inline-block; }
.notification-bell { position:relative; font-size:22px; cursor:pointer; padding:4px 8px; border-radius:50%; transition:background 0.3s; user-select:none; }
.notification-bell:hover { background:#ecf0f1; }
.notification-badge { position:absolute; top:-4px; right:0px; background:#e74c3c; color:#fff; font-size:11px; font-weight:bold; border-radius:50%; padding:1px 6px; min-width:18px; text-align:center; line-height:18px; }

.notification-dropdown { display:none; position:absolute; left:0; top:40px; width:360px; max-width:90vw; background:#fff; border-radius:12px; box-shadow:0 10px 40px rgba(0,0,0,0.2); z-index:9999; overflow:hidden; border:1px solid #ecf0f1; }
.notification-dropdown.show { display:block; }

.dropdown-header { display:flex; justify-content:space-between; align-items:center; padding:12px 18px; background:#f8f9fa; border-bottom:1px solid #ecf0f1; font-weight:bold; font-size:15px; }
.dropdown-header .mark-all-read { background:none; border:none; color:#3498db; cursor:pointer; font-size:13px; font-weight:normal; }
.dropdown-header .mark-all-read:hover { text-decoration:underline; }
.dropdown-body { max-height:380px; overflow-y:auto; }

.notification-item { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; border-bottom:1px solid #f0f0f0; cursor:pointer; transition:background 0.2s; }
.notification-item:hover { background:#f8f9fa; }
.notification-item.unread { background:#f0f8ff; border-right:3px solid #3498db; }
.notification-item.unread:hover { background:#e8f4fd; }
.notification-item.read { opacity:0.8; }

.notif-content { flex:1; min-width:0; }
.notif-title { font-weight:bold; font-size:14px; color:#2c3e50; }
.notif-message { font-size:13px; color:#555; margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.notif-time { font-size:11px; color:#95a5a6; margin-top:3px; }

.notif-actions { display:flex; gap:4px; flex-shrink:0; margin-right:10px; }
.notif-btn { background:none; border:none; cursor:pointer; font-size:14px; padding:4px 6px; border-radius:4px; transition:background 0.2s; color:#7f8c8d; }
.notif-btn:hover { background:#ecf0f1; }
.notif-btn.mark-read { color:#27ae60; }
.notif-btn.delete { color:#e74c3c; }
.notif-btn.delete:hover { background:#fde8e8; }

.notification-empty { padding:30px 20px; text-align:center; color:#95a5a6; font-size:14px; }

.notifications-section { background:#fff; border-radius:12px; padding:20px; margin-top:25px; box-shadow:0 2px 10px rgba(0,0,0,0.05); }
.notification-item { padding:12px 15px; border-bottom:1px solid #ecf0f1; }
.notification-item:last-child { border-bottom:none; }
.notification-item.unread { background:#f0f8ff; border-right:3px solid #3498db; }
.notif-title { font-weight:bold; }
.notif-message { font-size:14px; color:#555; }
.notif-time { font-size:12px; color:#95a5a6; }

@media (max-width:768px) {
    .auth-box { padding:25px 20px; }
    .stats-grid { grid-template-columns:1fr 1fr; }
    .menu-grid { grid-template-columns:1fr 1fr; }
    .tab-button { padding:8px 12px; font-size:12px; }
    .form-inline input[type="number"] { width:60px; }
    .notification-dropdown { left:-80px; width:320px; }
}
@media (max-width:480px) {
    .stats-grid { grid-template-columns:1fr; }
    .menu-grid { grid-template-columns:1fr; }
    .project-grid { grid-template-columns:1fr; }
    .notification-dropdown { left:-120px; width:290px; }
}
/* ============================================================
   بهبود فونت placeholder و فیلدها
   ============================================================ */

/* تنظیم فونت و رنگ placeholder */
::placeholder {
    color: #95a5a6;
    font-size: 13px;
    font-weight: 300;
    opacity: 1;
    font-family: 'Vazir', Tahoma, sans-serif;
}

/* برای مرورگرهای قدیمی (Internet Explorer) */
:-ms-input-placeholder {
    color: #95a5a6;
    font-size: 13px;
    font-weight: 300;
    font-family: 'Vazir', Tahoma, sans-serif;
}
::-ms-input-placeholder {
    color: #95a5a6;
    font-size: 13px;
    font-weight: 300;
    font-family: 'Vazir', Tahoma, sans-serif;
}

/* تنظیم فونت تمام فیلدهای ورودی */
input,
select,
textarea,
.form-control {
    font-family: 'Vazir', Tahoma, sans-serif;
    font-size: 14px;
    color: #2c3e50;
}

/* فیلدهای جستجو با اندازه خاص */
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea,
select {
    font-size: 14px;
    color: #2c3e50;
}

/* فیلدهای کوچک مثل جستجو در مدیریت فهرست‌ها */
.search-box input {
    font-size: 14px;
    padding: 8px 35px 8px 12px;
}

/* متن داخل select ها */
select {
    font-size: 14px;
    color: #2c3e50;
}

/* برای فیلدهای disabled */
input:disabled,
select:disabled,
textarea:disabled {
    color: #7f8c8d;
    background: #f8f9fa;
}
/* ============================================================
   تنظیم فونت سراسری برای تمام المان‌ها
   ============================================================ */

/* اعمال فونت Vazir به کل بدنه و همه المان‌ها */
* {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}

/* اطمینان از فونت برای المان‌های خاص */
body,
html,
input,
select,
textarea,
button,
.btn,
.btn-small,
.btn-report,
.form-control,
.form-group input,
.form-group select,
.form-group textarea,
.tree-item .title,
.tree-item .desc,
.assigned-chip,
.assigned-card .title,
.preview-empty,
.modal-content,
.alert,
.status-badge,
.menu-item .title,
.menu-item .desc,
.stat-card .stat-label,
.project-card h3,
.project-card p,
.invoice-item .info .title,
.invoice-item .info .meta,
.deduction-box label,
.total-amount,
.estimate-total-box span,
.table-container th,
.table-container td,
.navbar,
.dropdown-item,
.user-menu-btn .user-name,
.user-menu-btn .user-role,
.header-search input,
.header-actions .btn-quick,
.notif-btn,
.notification-item .notif-title,
.notification-item .notif-message,
.auth-box h1,
.auth-box h2,
.auth-box p,
.auth-box label,
.auth-box input,
.auth-box button {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}

/* تنظیم placeholder با فونت Vazir */
::placeholder {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
    color: #95a5a6;
    font-size: 13px;
    font-weight: 300;
    opacity: 1;
}

/* برای مرورگرهای قدیمی */
:-ms-input-placeholder {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
    color: #95a5a6;
    font-size: 13px;
    font-weight: 300;
}
::-ms-input-placeholder {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
    color: #95a5a6;
    font-size: 13px;
    font-weight: 300;
}

/* فونت برای فیلدهای ورودی */
input,
select,
textarea,
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
    font-size: 14px;
    color: #2c3e50;
}

/* فونت برای دکمه‌ها */
button,
.btn,
.btn-small,
.btn-report,
.btn-primary,
.btn-success,
.btn-danger,
.btn-secondary,
.btn-admin,
.btn-confirm-role,
.btn-reject-role,
.btn-view,
.btn-edit,
.btn-delete,
.btn-add,
.btn-remove,
.btn-apply,
.btn-print,
.btn-excel,
.btn-back,
.btn-filter,
.btn-reset,
.btn-quick,
.btn-login,
.btn-report-pdf,
.btn-report-print,
.btn-report-excel {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}

/* فونت برای دکمه‌های با استایل inline */
button[style*="background"],
[style*="button"] {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}

/* فونت برای فیلدهای جستجو */
.search-box input,
.search-box select,
.search-box textarea {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
    font-size: 14px;
}

/* فونت برای هدر و منوها */
.dashboard-header,
.header-logo .logo-text,
.user-menu-btn .user-name,
.user-menu-btn .user-role,
.header-actions .btn-quick {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}

/* فونت برای تب‌ها و لینک‌ها */
.tab-button,
.tab-button a,
.nav-link,
.menu-item,
.sidebar-link,
a {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}

/* فونت برای پنل‌ها و کارت‌ها */
.panel-title,
.card-title,
.modal-title,
.popover-title,
.tooltip-inner {
    font-family: 'Vazir', Tahoma, Arial, sans-serif !important;
}