/* ===========================
   UNIFIED GLOBAL STYLES
   All Pages Design System
   =========================== */

/* Direction-responsive styles */
.login-container[style*="ltr"] label {
    text-align: left;
}

.login-container[style*="rtl"] label {
    text-align: right;
}

.login-container[style*="ltr"] .form-control-modern {
    text-align: left;
    padding-left: 40px;
    padding-right: 12px;
}

.login-container[style*="rtl"] .form-control-modern {
    text-align: right;
    padding-right: 40px;
    padding-left: 12px;
}

.login-container[style*="ltr"] .input-wrapper i {
    left: 12px;
}

.login-container[style*="rtl"] .input-wrapper i {
    right: 12px;
}

/* ===========================
   1. ROOT & TYPOGRAPHY
   =========================== */
:root {
--primary-color: #952A04;
--primary-dark: #6B1E03;
--secondary-color: #10b981;
--secondary-dark: #059669;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --success-color: #4caf50;
    --info-color: #03A9F4;
    --light-gray: #f9fafb;
    --border-gray: #e5e7eb;
    --text-primary: #333;
    --text-secondary: #666;
    --text-muted: #999;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 6px;
    --transition: all 0.3s ease;
}

* {
    font-family: 'STC-Regular', Arial, sans-serif;
    box-sizing: border-box;
}

/* ===========================
   2. COMMON CONTAINERS
   =========================== */

/* Main Page Container - Used by all pages */
.page-container {
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    box-sizing: border-box;
}

.container-full {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    box-sizing: border-box;
}


.container-md {
    width: 100%;
    margin: 10px auto;
    padding: 15px;
}

.container-section {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 20px;
    margin-bottom: 30px;
}

/* ===========================
   3. TYPOGRAPHY & HEADINGS
   =========================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }

.page-title {
    font-size: 28px;
    color: #2C5282;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 5px 0;
}

.section-title {
    font-size: 18px;
    color: #2C5282;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.section-title i {
    font-size: 22px;
    color: var(--primary-color);
}

/* ===========================
   4. ALERTS & MESSAGES
   =========================== */
.alert {
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid;
    animation: slideDown 0.3s ease-out;
    font-size: 14px;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-danger {
    background-color: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

.alert-danger i {
    color: #f44336;
}

.alert-success {
    background-color: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

.alert-success i {
    color: #4caf50;
}

.alert-warning {
    background-color: #fff3e0;
    border-color: #ff9800;
    color: #e65100;
}

.alert-info {
    background-color: #e3f2fd;
    border-color: #03A9F4;
    color: #01579b;
}

.alert-dismissible {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.btn-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   5. FORM ELEMENTS
   =========================== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: var(--danger-color);
    font-weight: bold;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: 'STC-Regular', Arial, sans-serif;
    text-align: right;
    direction: rtl;
    background: white;
    transition: var(--transition);
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control[multiple] {
    padding: 8px;
    min-height: 100px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Form Grid Layouts */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    direction: rtl;
    margin-bottom: 20px;
}

.form-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 250px;
}

.form-column.col-md-6 {
    flex: 1;
    min-width: 280px;
}

/* ===========================
   6. BUTTONS
   =========================== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    text-decoration: none;
    font-family: 'STC-Regular', Arial, sans-serif;
}

.btn i {
    font-size: 16px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Button Variants */
.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.btn-success {
    background: var(--secondary-color);
    color: white;
}

.btn-success:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #e53935;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f0f0f0;
    color: var(--text-primary);
    border: 1px solid var(--border-gray);
}

.btn-secondary:hover:not(:disabled) {
    background: #e8e8e8;
    border-color: var(--text-muted);
}

.btn-link {
    background: none;
    color: var(--primary-color);
    border: none;
    text-decoration: none;
}

.btn-link:hover {
    text-decoration: underline;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    min-height: 36px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    min-height: 48px;
}

/* Action Buttons */
.action-btn {
    background: var(--info-color);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
}

.action-btn:hover:not(:disabled) {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(3, 169, 244, 0.3);
}

/* Button Groups */
.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-group.stacked {
    flex-direction: column;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-gray);
    flex-wrap: wrap;
}

/* ===========================
   7. TABLES
   =========================== */
.table-responsive {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow-x: auto;
    width: 100%;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: var(--light-gray);
    border-bottom: 2px solid var(--border-gray);
}

.table th {
    padding: 15px;
    text-align: right;
    font-weight: 600;
    color: #2C5282;
    font-size: 14px;
    direction: rtl;
}

.table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: var(--text-primary);
    text-align: right;
    direction: rtl;
}

.table tbody tr:hover {
    background-color: #f9fafb;
}

.table tbody tr.unread-row {
    background-color: #f0f4ff;
    border-left: 4px solid var(--primary-color);
}

.table td.detail-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Action Button */
.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'STC-Regular', Arial, sans-serif;
}

.action-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.action-btn i {
    font-size: 14px;
}

.table tbody tr:hover {
    background: var(--light-gray);
}

.table tbody tr.unread-row {
    font-weight: 700;
    background: #fafbfc;
}

.table tbody tr.unread-row:hover {
    background: #f0f3f8;
}

/* ===========================
   8. BADGES & BADGES
   =========================== */
.badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

.badge-primary {
    background: var(--primary-color);
    color: white;
}

.badge-success {
    background: var(--success-color);
    color: white;
}

.badge-danger {
    background: var(--danger-color);
    color: white;
}

.badge-warning {
    background: var(--warning-color);
    color: white;
}

.badge-info {
    background: var(--info-color);
    color: white;
}

.badge-light {
    background: #f0f0f0;
    color: var(--text-primary);
}

/* ===========================
   9. STATUS BADGES
   =========================== */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.status-badge.pending,
.status-badge.unread {
    background: #fff3cd;
    color: #856404;
}

.status-badge.approved,
.status-badge.read,
.status-badge.completed {
    background: #d4edda;
    color: #155724;
}

.status-badge.rejected,
.status-badge.error {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.new {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.warning {
    background: #fff3cd;
    color: #856404;
}

/* ===========================
   10. FILTER & SEARCH
   =========================== */
.filter-section {
    margin-bottom: 25px;
    padding: 30px 20px 0 20px;
}

.filter-section h2 {
    margin: 0 0 15px 0;
    color: #2C5282;
    font-size: 20px;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    color: var(--text-secondary);
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-btn i {
    font-size: 14px;
}

/* Search Section */
.search-section {
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f0f0f0;
    border-bottom: 1px solid var(--border-gray);
    cursor: pointer;
}

.search-header h4 {
    margin: 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.btn-toggle-search {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0;
    transition: var(--transition);
}

.btn-toggle-search:hover {
    transform: rotate(180deg);
}

.search-form {
    padding: 20px;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-group label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.search-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-gray);
    flex-wrap: wrap;
}

/* ===========================
   11. CARDS & SECTIONS
   =========================== */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: var(--light-gray);
    padding: 15px;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-weight: 600;
    color: #2C5282;
    margin: 0;
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 15px;
    background: var(--light-gray);
    border-top: 1px solid var(--border-gray);
}

.info-card {
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.info-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.info-value.amount {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile Cards */
.request-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.request-card.unread-card {
    font-weight: 700;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

    .request-card.unread-card .card-header {
        background: #faf6de;
    }

.request-card.unread-card .card-title {
    font-weight: 700;
    color: var(--text-primary);
}

.card-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.card-row:last-child {
    border-bottom: none;
}

/* Card Row with Double Items (Horizontal Layout) */
.card-row.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.card-row.double:last-child {
    border-bottom: none;
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.card-icon {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

/* ===========================
   12. LOADING & EMPTY STATES
   =========================== */
.loading-spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    gap: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--border-radius);
}

.empty-state i {
    font-size: 64px;
    color: #ddd;
    display: block;
    margin-bottom: 15px;
}

.empty-state h3 {
    color: #2C5282;
    margin: 10px 0;
    font-size: 18px;
}

.empty-state p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

/* ===========================
   13. PAGINATION
   =========================== */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    margin: 20px;
    box-shadow: var(--shadow-sm);
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.page-number {
    margin: 0 20px;
    color: #2C5282;
    font-weight: 700;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn i {
    font-size: 16px;
}

/* ===========================
   14. TABS & NAVIGATION
   =========================== */
.nav-tabs {
    display: flex;
    border-bottom: 2px solid var(--border-gray);
    gap: 5px;
    flex-wrap: wrap;
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: rgba(102, 126, 234, 0.05);
}

.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.nav-link i {
    font-size: 16px;
}

/* ===========================
   15. UTILITIES
   =========================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-muted {
    color: var(--text-muted);
}

.text-primary {
    color: var(--primary-color);
}

.text-success {
    color: var(--success-color);
}

.text-danger {
    color: var(--danger-color);
}

.text-warning {
    color: var(--warning-color);
}

.mt-0 { margin-top: 0; }
.mt-5 { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.mb-0 { margin-bottom: 0; }
.mb-5 { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.p-0 { padding: 0; }
.p-5 { padding: 5px; }
.p-10 { padding: 10px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }

.gap-5 { gap: 5px; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }

/* ===========================
   16. RESPONSIVE DESIGN
   =========================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .container-full {
        width: 95%;
        padding: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-grid-3 {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-column {
        min-width: 100%;
    }

    .form-control {
        padding: 12px 10px;
        font-size: 16px;
        min-height: 44px;
    }

    .btn,
    .btn-lg {
        width: 100%;
        min-width: unset;
        padding: 12px 16px;
        font-size: 14px;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .table {
        font-size: 12px;
    }

    .table th,
    .table td {
        padding: 10px;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .search-actions {
        flex-direction: column;
    }

    .search-actions .btn {
        width: 100%;
    }

    .filter-options {
        justify-content: flex-start;
    }

    .filter-btn {
        flex: 0 1 auto;
    }

    .pagination-container {
        flex-direction: column;
        gap: 15px;
    }

    .pagination-controls {
        width: 100%;
        justify-content: center;
    }

    .card-row {
        padding: 10px 0;
    }

    .alert {
        padding: 12px 15px;
        font-size: 13px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container-full,
    .container-md,
    .page-container {
        width: 100%;
        padding: 10px;
        margin: 0;
    }

    .page-title {
        font-size: 18px;
        gap: 8px;
    }

    .form-grid,
    .form-grid-3 {
        gap: 10px;
    }

    .form-group {
        gap: 6px;
        margin-bottom: 12px;
    }

    .form-control {
        padding: 12px 8px;
        font-size: 16px;
    }

    .btn,
    .btn-lg,
    .btn-sm {
        width: 100%;
        padding: 11px 12px;
        font-size: 13px;
        min-height: 40px;
    }

    .form-actions {
        gap: 8px;
    }

    .table th,
    .table td {
        padding: 8px 4px;
        font-size: 11px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .status-badge {
        padding: 4px 10px;
        font-size: 11px;
    }

    .alert {
        padding: 10px 12px;
        font-size: 12px;
    }

    .card-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-form {
        padding: 15px;
    }

    .empty-state {
        padding: 40px 15px;
    }

    .empty-state i {
        font-size: 48px;
    }

    .empty-state h3 {
        font-size: 16px;
    }
}

/* ===========================
   17. LOGIN PAGE STYLES
   =========================== */

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.loading-overlay.show {
    display: flex;
}

.loading-content {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loading-text {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

/* Login Container */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
    direction: rtl;
}

.login-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    background: white;
    color: var(--text-primary);
    padding: 20px;
    text-align: center;
}

.login-header h5 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-primary);
}

.login-header i {
    font-size: 24px;
}

.login-body {
    padding: 30px;
}

/* Login Icon */
.login-icon-wrapper {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeIn 0.6s ease-out;
}

.login-icon-wrapper i {
    font-size: 80px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    animation: iconBounce 2.5s ease-in-out infinite;
}

.login-icon-wrapper i:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: scale(1.05);
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    background: white;
    transition: var(--transition);
}

.step.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step.completed {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

/* Login Steps */
.login-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.login-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Form Group Modern */
.form-group-modern {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--primary-color);
    pointer-events: none;
    font-size: 18px;
}

/* Form Control Modern */
.form-control-modern {
    padding: 12px 12px 12px 40px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'STC-Regular', Arial, sans-serif;
    text-align: right;
    direction: rtl;
    width: 100%;
    transition: var(--transition);
    color: var(--text-primary);
    background: white;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control-modern.error {
    border-color: var(--danger-color);
    background: rgba(244, 67, 54, 0.05);
}

.code-input {
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Error Message */
.error-message {
    color: var(--danger-color);
    font-size: 12px;
    padding: 8px;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 4px;
    display: none;
    margin-top: 5px;
}

.error-message.show {
    display: block;
}

/* Button Modern */
.btn-modern {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    font-family: 'STC-Regular', Arial, sans-serif;
    width: 100%;
}

.btn-primary-modern {
    background: var(--primary-color);
    color: white;
}

.btn-primary-modern:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
}

.btn-modern:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-modern i {
    font-size: 18px;
}

/* Help Text */
.help-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 15px;
    line-height: 1.5;
}

/* User Info Card */
.user-info-card {
    background: var(--light-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.user-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-gray);
}

.user-info-item:last-child {
    border-bottom: none;
}

.user-info-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 13px;
}

.user-info-value {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

/* Alert Info Modern */
.alert-info-modern {
    background: rgba(3, 169, 244, 0.1);
    border-left: 4px solid var(--info-color);
    border-radius: 4px;
    padding: 12px;
    color: #01579b;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: right;
    direction: rtl;
}

/* Responsive Login Styles */
@media (max-width: 768px) {
    .login-container {
        padding: 15px;
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .login-card {
        max-width: 100%;
    }

    .login-body {
        padding: 20px;
    }

    .step-indicator {
        gap: 10px;
        margin-bottom: 20px;
    }

    .step {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .form-group-modern {
        margin-bottom: 15px;
    }

    .btn-modern {
        padding: 11px 16px;
        font-size: 14px;
    }

    .form-control-modern {
        font-size: 16px;
        padding: 11px 11px 11px 36px;
    }

    /* Responsive Login Icon */
    .login-icon-wrapper {
        margin-bottom: 20px;
    }

    .login-icon-wrapper i {
        width: 100px;
        height: 100px;
        font-size: 60px;
    }
}


/* ===========================
   18. TOAST NOTIFICATION STYLES
   =========================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.3s ease-out;
    pointer-events: all;
    border-left: 4px solid var(--primary-color);
    min-width: 300px;
    transition: var(--transition);
}

.toast:not(.show) {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast.error {
    border-left-color: var(--danger-color);
    background: #fff5f5;
}

.toast.error .toast-icon {
    color: var(--danger-color);
}

.toast.success {
    border-left-color: var(--success-color);
    background: #f0fdf4;
}

.toast.success .toast-icon {
    color: var(--success-color);
}

.toast.warning {
    border-left-color: var(--warning-color);
    background: #fffbeb;
}

.toast.warning .toast-icon {
    color: var(--warning-color);
}

.toast.info {
    border-left-color: var(--info-color);
    background: #eff6ff;
}

.toast.info .toast-icon {
    color: var(--info-color);
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-message {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-align: right;
    direction: rtl;
}

.toast-close {
    font-size: 18px;
    cursor: pointer;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, currentColor 0%, transparent 100%);
    animation: progressBar 5s linear forwards;
    border-radius: 0 0 8px 0;
}

.toast.error .toast-progress {
    background: linear-gradient(90deg, var(--danger-color) 0%, transparent 100%);
}

.toast.success .toast-progress {
    background: linear-gradient(90deg, var(--success-color) 0%, transparent 100%);
}

.toast.warning .toast-progress {
    background: linear-gradient(90deg, var(--warning-color) 0%, transparent 100%);
}

.toast.info .toast-progress {
    background: linear-gradient(90deg, var(--info-color) 0%, transparent 100%);
}

@keyframes progressBar {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

/* Responsive Toast Styles */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }

    .toast {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .toast-container {
        top: 8px;
        right: 8px;
        left: 8px;
    }

    .toast {
        padding: 12px 16px;
        gap: 10px;
    }

    .toast-message {
        font-size: 13px;
    }

    .toast-icon {
        font-size: 18px;
    }

    .toast-close {
        font-size: 16px;
    }
}

/* ===========================
   19. APP LAYOUT STYLES (Navigation & Sidebar)
   =========================== */

.app-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: white;
    direction: rtl;
}

/* Navbar */
.navbar {
    background: white;
    border-bottom: 2px solid var(--border-gray);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    width: 100%;
    overflow: hidden;
    display: block;
    visibility: visible;
    min-height: 70px;
}

.navbar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    direction: rtl;
    box-sizing: border-box;
    gap: 20px;
    min-height: 70px;
}

/* Navbar Left & Right Sections */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

/* User Profile in Navbar */
.user-profile-navbar {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
}

.user-avatar-navbar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.user-avatar-navbar i {
    font-size: 28px;
    color: white;
}

.user-info-navbar {
    flex: 1;
    text-align: right;
    min-width: 0;
    direction: rtl;
}

.user-info-navbar h3 {
    margin: 0;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    word-break: break-word;
    text-align: right;
}

.user-info-navbar p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
}

/* Supplier Dropdown Item Hover Effect */
.supplier-dropdown-item:hover {
    background-color: rgba(102, 126, 234, 0.1) !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.logo-link:hover {
    color: var(--primary-dark);
}

.logo-link i {
    font-size: 24px;
}

.logo-link span {
    text-align: right;
    direction: rtl;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar-toggle:hover {
    background: var(--light-gray);
}

.navbar-toggle i {
    display: flex;
}

/* Main Layout */
.app-main {
    display: flex;
    flex: 1;
}

/* Page Content Area */
.page-content {
    flex: 1;
    width: 100%;
    overflow: auto;
    box-sizing: border-box;
    background-color: whitesmoke;
    padding: 5px;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: white;
    border-right: 1px solid var(--border-gray);
    overflow-y: auto;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    direction: rtl;
    box-sizing: border-box;
    font-size:10px;
}

.sidebar-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.user-avatar i {
    font-size: 28px;
    color: white;
}

.user-info {
    flex: 1;
    text-align: right;
    min-width: 0;
    direction: rtl;
}

.user-info h3 {
    margin: 0;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    word-break: break-word;
    text-align: right;
}

.user-info p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
}

/* Sidebar Menu */
.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-secondary);
    background: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    text-align: right;
    direction: rtl;
    width: 100%;
    font-family: 'STC-Regular', Arial, sans-serif;
    box-sizing: border-box;
}

.menu-item:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.menu-item:active {
    background: var(--light-gray);
    color: var(--primary-color);
}

.menu-item i {
    font-size: 18px;
    flex-shrink: 0;
}

.menu-item span {
    flex: 1;
    text-align: right;
}

/* Table Responsive Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    display: block;
}

/* Mobile Cards Display - Hidden on Desktop */
.mobile-cards {
    display: none;
}

/* Show mobile cards on tablets and mobile */
@media (max-width: 768px) {
    .table-responsive {
        display: none;
    }

    .mobile-cards {
        display: block;
    }
}

/* Request Card - Mobile View */
.request-card {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.3s ease-in;
}

.request-card.unread-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.request-card.unread-card .card-header {
    background: #f0f4ff;
}

.mobile-card {
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.mobile-card:active {
    transform: scale(.98);
    box-shadow: 0 3px 10px rgba(0,0,0,.12);
}

/* Card Detail Row */
.card-row.detail-row {
    margin-bottom: 0;
}

.detail-value {
    max-height: 100px;
    overflow-y: auto;
}



/* Dashboard & Filter Section */
.dashboard-simple {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
}

.filter-section {
    margin-bottom: 25px;
    padding: 20px 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    padding-left: 20px;
    padding-right: 20px;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    direction: rtl;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    color: var(--text-secondary);
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'STC-Regular', Arial, sans-serif;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--light-gray);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Search Section */
.search-section {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    overflow: hidden;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-gray);
    direction: rtl;
}

.search-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-toggle-search {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
}

.search-form {
    padding: 20px;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-group label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 12px;
    text-align: right;
    direction: rtl;
}

.search-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-gray);
    direction: rtl;
}

/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    margin-top: 25px;
    direction: rtl;
}

.pagination-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    direction: rtl;
}

.pagination-info {
    color: var(--text-muted);
    font-size: 12px;
    text-align: right;
}

.pagination-info.page-number {
    padding: 0 15px;
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .pagination-controls {
        width: 100%;
        justify-content: center;
    }

    .filter-section {
        padding: 15px;
    }

    .filter-options {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .search-form {
        padding: 15px;
    }

     .search-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .navbar-container {
        padding: 12px 15px;
    }

    .sidebar {
        width: 240px;
        padding: 15px;
    }

    .app-content {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Sidebar Mobile Styles */
    .sidebar {
        position: fixed;
        left: auto;
        right: 0;
        top: 60px;
        height: calc(100vh - 60px);
        width: 280px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-right: 1px solid var(--border-gray);
        border-left: 1px solid var(--border-gray);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .app-main {
        flex-direction: column;
    }

    .app-content {
        padding: 12px;
    }

    .navbar-container {
        padding: 10px 12px;
    }

    .logo-link {
        font-size: 15px;
    }

    .user-avatar {
        width: 42px;
        height: 42px;
    }

    .user-avatar i {
        font-size: 24px;
    }

    .user-info h3 {
        font-size: 12px;
    }

    .user-info p {
        font-size: 10px;
    }

    .menu-item {
        padding: 10px 12px;
        font-size: 13px;
        gap: 10px;
    }

    .menu-item i {
        font-size: 16px;
    }

    .sidebar-header {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 8px 10px;
    }

    .logo-link {
        font-size: 13px;
        gap: 6px;
    }

    .logo-link i {
        font-size: 20px;
    }

    .navbar-toggle {
        font-size: 20px;
        padding: 5px;
    }

    .sidebar {
        width: 100%;
        right: 0;
        top: 50px;
        height: calc(100vh - 50px);
        padding: 12px;
        border-radius: 0;
    }

    .sidebar-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .user-profile {
        gap: 10px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .user-avatar i {
        font-size: 22px;
    }

    .user-info h3 {
        font-size: 11px;
    }

    .user-info p {
        font-size: 9px;
    }

    .sidebar-menu {
        gap: 2px;
    }

    .menu-item {
        padding: 8px 10px;
        font-size: 12px;
        gap: 8px;
    }

    .menu-item i {
        font-size: 14px;
    }

    .app-content {
        padding: 8px;
    }
}
