 /* ═══════SAKI SERVICES — Provider Admin Panel CSS════════ */

 /* ── Google Fonts ── */
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600&family=Roboto:wght@400;700;900&display=swap');

 /* ════════   CSS VARIABLES ═════════ */
 :root {
     --primary: #1a3c6e;
     --accent: #2563eb;
     --orange: #f5a623;
     --orange-dark: #e09010;
     --green: #22c55e;
     --red: #ef4444;
     --yellow: #f59e0b;
     --blue: #2563eb;

     --sidebar-w: 252px;
     --header-h: 62px;

     --bg: #f2f5fb;
     --card-bg: #ffffff;
     --border: #e5eaf3;
     --text: #1a2332;
     --dark-c: #000;
     --muted: #6b7a90;
     --light: #adb5c6;

     --shadow-sm: 0 2px 8px rgba(26, 60, 110, 0.07);
     --shadow-md: 0 4px 18px rgba(26, 60, 110, 0.11);

     --radius: 13px;
     --radius-sm: 8px;
     --transition: 0.24s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* ═══════════ RESET & BASE ══════════ */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 html,
 body {
     height: 100%;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background: var(--bg);
     color: var(--text);
     font-size: 13.5px;
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Roboto', sans-serif;
     margin: 0;
 }

 p {
     margin: 0 0 0.5rem;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 /* Scrollbar */
 ::-webkit-scrollbar {
     width: 4px;
     height: 4px;
 }

 ::-webkit-scrollbar-track {
     background: transparent;
 }

 ::-webkit-scrollbar-thumb {
     background: #cdd4e2;
     border-radius: 10px;
 }

 /* ═════════════  LAYOUT SHELL ═══════════ */
 .app-wrapper {
     display: flex;
     min-height: 100vh;
 }

 .app-main {
     flex: 1;
     margin-left: var(--sidebar-w);
     display: flex;
     flex-direction: column;
     min-width: 0;
     transition: margin-left var(--transition);
 }

 /* ══════════  CONTENT AREA ══════════ */
 .app-content {
     flex: 1;
     padding: 40px 26px 20px;
 }

 /* Sections */
 .content-section {
     margin-bottom: 60px;
     scroll-margin-top: calc(var(--header-h) + 16px);
 }

 .section-header {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 12px;
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .section-title {
     font-size: 1.2rem;
     font-weight: 900;
     color: var(--text);
     margin-bottom: 3px;
 }

 .section-sub {
     font-size: 0.76rem;
     color: var(--muted);
 }

 .section-header-actions {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .section-actions {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 10px;
     margin-top: 18px;
     flex-wrap: wrap;
 }

 /* ══════════  STATUS PILLS (BADGES) ══════════ */
 .status-pill {
     display: inline-flex;
     align-items: center;
     gap: 5px;
     padding: 3px 11px;
     border-radius: 20px;
     font-family: 'Montserrat', sans-serif;
     font-size: 0.67rem;
     font-weight: 700;
     white-space: nowrap;
     flex-shrink: 0;
 }

 .status-pill::before {
     content: '';
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: currentColor;
 }

 .status-pill.success {
     background: rgba(34, 197, 94, 0.12);
     color: #16a34a;
 }

 .status-pill.warning {
     background: rgba(245, 158, 11, 0.12);
     color: #d97706;
 }

 .status-pill.danger {
     background: rgba(239, 68, 68, 0.12);
     color: #dc2626;
 }

 .status-pill.info {
     background: rgba(37, 99, 235, 0.10);
     color: #2563eb;
 }

 .status-pill.pending {
     background: rgba(107, 114, 128, 0.1);
     color: #6b7280;
 }

 /* ═══════════  BUTTONS ═══════════ */
 .btn {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     padding: 9px 20px;
     border-radius: 25px;
     font-family: 'Montserrat', sans-serif;
     font-size: 0.76rem;
     font-weight: 700;
     border: none;
     cursor: pointer;
     transition: all 0.2s;
     white-space: nowrap;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--orange), #ffbf00);
     color: #fff;
     box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-1px);
     box-shadow: 0 6px 18px rgba(245, 166, 35, 0.4);
 }

 .btn-outline {
     background: transparent;
     border: 1.5px solid var(--border);
     color: var(--text);
 }

 .btn-outline:hover {
     border-color: var(--orange);
     color: var(--orange);
 }

 .btn-sm {
     padding: 6px 14px;
     font-size: 0.7rem;
 }

 .mt-12 {
     margin-top: 12px;
 }

 /* ═══════════  KPI CARDS ═══════════ */
 .kpi-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
     margin-bottom: 20px;
 }

 .kpi-card {
     background: var(--card-bg);
     border-radius: var(--radius);
     padding: 22px 18px 16px;
     border: 1px solid var(--border);
     box-shadow: var(--shadow-sm);
     display: flex;
     align-items: flex-start;
     gap: 14px;
     position: relative;
     overflow: hidden;
     transition: transform 0.2s, box-shadow 0.2s;
 }

 .kpi-card:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-md);
 }

 .kpi-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--kpi-accent, var(--orange));
     border-radius: var(--radius) var(--radius) 0 0;
 }

 .kpi-card.orange {
     --kpi-accent: var(--orange);
 }

 .kpi-card.blue {
     --kpi-accent: var(--accent);
 }

 .kpi-card.green {
     --kpi-accent: var(--green);
 }

 .kpi-card.red {
     --kpi-accent: var(--red);
 }

 .kpi-icon {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     background: rgba(245, 166, 35, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     color: var(--kpi-accent, var(--orange));
     flex-shrink: 0;
 }

 .kpi-card.blue .kpi-icon {
     background: rgba(37, 99, 235, 0.1);
 }

 .kpi-card.green .kpi-icon {
     background: rgba(34, 197, 94, 0.1);
 }

 .kpi-card.red .kpi-icon {
     background: rgba(239, 68, 68, 0.1);
 }

 .kpi-value {
     font-family: 'Roboto', sans-serif;
     font-size: 1.6rem;
     font-weight: 900;
     color: var(--text);
     line-height: 1;
     margin-bottom: 3px;
 }

 .kpi-label {
     font-size: 0.72rem;
     color: var(--muted);
     font-weight: 500;
     margin-bottom: 6px;
 }

 .kpi-trend {
     font-size: 0.68rem;
     font-weight: 600;
     font-family: 'Poppins', sans-serif;
     display: flex;
     align-items: center;
     gap: 4px;
     display: none;
 }

 .kpi-trend.up {
     color: var(--green);
 }

 .kpi-trend.down {
     color: var(--red);
 }

 /* ══════════  CONTENT CARD ══════════ */
 .content-card {
     background: var(--card-bg);
     border-radius: var(--radius);
     border: 1px solid var(--border);
     box-shadow: var(--shadow-sm);
     overflow: hidden;
     margin-bottom: 16px;
 }

 .card-head {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 15px 20px 12px;
     border-bottom: 1px solid var(--border);
     gap: 10px;
     flex-wrap: wrap;
 }

 .ch-title {
     font-family: 'Roboto', sans-serif;
     font-size: 0.9rem;
     font-weight: 800;
     color: var(--text);
 }

 .ch-link {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.7rem;
     font-weight: 700;
     color: var(--orange);
 }

 .card-body {
     padding: 18px 20px;
 }

 .card-body.no-pad {
     padding: 0;
 }

 /* ════════════ JOB LIST (Dashboard) ══════════════ */
 .job-list {
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .job-item {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 12px 0;
     border-bottom: 1px solid var(--border);
     flex-wrap: wrap;
 }

 .job-item:last-child {
     border-bottom: none;
 }

 .job-time {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.75rem;
     font-weight: 700;
     color: var(--orange);
     width: 72px;
     flex-shrink: 0;
 }

 .job-info {
     flex: 1;
     min-width: 0;
 }

 .job-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 2px;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
 }

 .job-meta {
     font-size: 0.7rem;
     color: var(--muted);
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .job-meta i {
     color: var(--orange);
     font-size: 0.65rem;
 }

 .job-amount {
     font-family: 'Roboto', sans-serif;
     font-weight: 900;
     font-size: 0.9rem;
     color: var(--primary);
     flex-shrink: 0;
 }


 /* ═════════ KYC SECTION ═══════════ */
 .kyc-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
     margin-bottom: 18px;
 }

 .kyc-card {
     background: var(--card-bg);
     border-radius: var(--radius);
     border: 1px solid var(--border);
     box-shadow: var(--shadow-sm);
     padding: 18px;
 }

 .kyc-card-head {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 14px;
     flex-wrap: wrap;
 }

 .kyc-icon {
     width: 38px;
     height: 38px;
     border-radius: 9px;
     background: rgba(245, 166, 35, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     color: var(--orange);
     flex-shrink: 0;
 }

 .kyc-doc-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.82rem;
     font-weight: 700;
     color: var(--text);
 }

 .kyc-doc-sub {
     font-size: 0.68rem;
     color: var(--muted);
     margin-top: 2px;
 }

 .kyc-card-head .status-pill {
     margin-left: auto;
 }

 .kyc-upload-area {
     border: 2px dashed var(--border);
     border-radius: 10px;
     padding: 20px;
     text-align: center;
     cursor: pointer;
     transition: all 0.2s;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
     font-size: 0.76rem;
     color: var(--muted);
 }

.kyc-upload-area:not(.uploaded):hover {
    border-color: var(--orange);
    background: rgba(245, 166, 35, 0.04);
    color: var(--orange);
}

 .kyc-upload-area i {
     font-size: 1.5rem;
 }

 .kyc-upload-area small {
     font-size: 0.65rem;
     color: var(--light);
 }

 .kyc-upload-area.uploaded {
     border-style: solid;
     border-color: var(--green);
     background: rgba(34, 197, 94, 0.05);
     color: #16a34a;
     cursor: default;
 }

 .file-hidden {
     position: absolute;
     opacity: 0;
     pointer-events: none;
     width: 0;
     height: 0;
 }

 /* ══════════   DETAIL ROWS ════════════ */
 .details-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
 }

 .detail-row {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 12px;
     padding: 9px 0;
     border-bottom: 1px solid var(--border);
 }

 .detail-row:last-child {
     border-bottom: none;
 }

 .dr-label {
     font-size: 0.72rem;
     color: var(--muted);
     font-weight: 500;
     flex-shrink: 0;
     width: 120px;
 }

 .dr-value {
     font-size: 0.78rem;
     color: var(--text);
     font-weight: 500;
     text-align: right;
     flex: 1;
 }

 /* Customer profile in details */
 .customer-profile {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px;
     background: var(--bg);
     border-radius: 10px;
     margin-bottom: 14px;
 }

 .cp-avatar {
     width: 44px;
     height: 44px;
     border-radius: 11px;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Roboto', sans-serif;
     font-weight: 900;
     color: #fff;
     font-size: 0.8rem;
 }

 .cp-name {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.85rem;
     font-weight: 700;
     color: var(--text);
 }

 .cp-role {
     font-size: 0.68rem;
     color: var(--muted);
 }

 /* ═══════════ RATING / REVIEWS ═══════════ */
 .rating-summary {
     background: var(--card-bg);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 22px;
     display: flex;
     align-items: center;
     gap: 40px;
     margin-bottom: 16px;
     box-shadow: var(--shadow-sm);
     flex-wrap: wrap;
 }

 .rs-number {
     font-family: 'Roboto', sans-serif;
     font-size: 3rem;
     font-weight: 900;
     color: var(--text);
     line-height: 1;
 }

 .rs-stars {
     font-size: 1.2rem;
     color: var(--orange);
     margin: 4px 0;
 }

 .rs-total {
     font-size: 0.72rem;
     color: var(--muted);
 }

 .rs-bars {
     flex: 1;
     min-width: 200px;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .rb-row {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 0.7rem;
     color: var(--muted);
     font-family: 'Poppins', sans-serif;
 }

 .rb-track {
     flex: 1;
     height: 7px;
     background: var(--bg);
     border-radius: 10px;
     overflow: hidden;
 }

 .rb-fill {
     height: 100%;
     border-radius: 10px;
     transition: width 0.4s;
 }

 .review-list {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .review-card {
     background: var(--card-bg);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 18px 20px;
     box-shadow: var(--shadow-sm);
 }

 .rc-head {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 12px;
     flex-wrap: wrap;
 }

 .rc-avatar {
     width: 36px;
     height: 36px;
     border-radius: 9px;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Roboto', sans-serif;
     font-weight: 900;
     font-size: 0.7rem;
     color: #fff;
     flex-shrink: 0;
 }

 .rc-info {
     flex: 1;
 }

 .rc-name {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.82rem;
     font-weight: 700;
     color: var(--text);
 }

 .rc-service {
     font-size: 0.68rem;
     color: var(--muted);
     margin-top: 2px;
 }

 .rc-right {
     text-align: right;
 }

 .rc-stars {
     font-size: 0.88rem;
     color: var(--orange);
 }

 .rc-date {
     font-size: 0.65rem;
     color: var(--light);
     margin-top: 2px;
 }

 .rc-text {
     font-size: 0.78rem;
     color: var(--muted);
     line-height: 1.6;
 }

 /* ════════════ FORMS ═════════════ */
 .form-group {
     margin-bottom: 16px;
 }

 .form-group label {
     display: block;
     font-family: 'Montserrat', sans-serif;
     font-size: 0.72rem;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 5px;
 }

 .required {
     color: var(--red);
     margin-left: 2px;
 }

 .form-input,
 .form-select,
 .form-textarea {
     width: 100%;
     border: 1.5px solid var(--border);
     border-radius: 9px;
     padding: 9px 13px;
     font-family: 'Poppins', sans-serif;
     font-size: 0.78rem;
     color: var(--text);
     background: #fff;
     outline: none;
     transition: border-color 0.2s, box-shadow 0.2s;
     appearance: none;
 }

 .form-input:focus,
 .form-select:focus,
 .form-textarea:focus {
     border-color: var(--orange);
     box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
 }

 .form-textarea {
     min-height: 90px;
     resize: vertical;
 }

 .form-select {
     cursor: pointer;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a90' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 12px center;
     padding-right: 34px;
 }

 .profile-photo-row {
     display: flex;
     align-items: center;
     gap: 16px;
     margin-bottom: 18px;
     padding-bottom: 18px;
     border-bottom: 1px solid var(--border);
 }

 .profile-photo-avatar {
     width: 64px;
     height: 64px;
     border-radius: 14px;
     background: linear-gradient(135deg, var(--orange), #ffbf00);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Roboto', sans-serif;
     font-weight: 900;
     font-size: 1.2rem;
     color: #fff;
 }

 /* ═════════════ NOTIFICATIONS FULL LIST ════════════════ */
 .notif-full-list {
     display: flex;
     flex-direction: column;
 }

 .notif-full-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 14px 20px;
     border-bottom: 1px solid var(--border);
     transition: background 0.15s;
     position: relative;
     cursor: pointer;
 }

 .notif-full-item:last-child {
     border-bottom: none;
 }

 .notif-full-item:hover {
     background: var(--bg);
 }

 .notif-full-item.unread {
     background: rgba(245, 166, 35, 0.025);
 }

 .nfi-icon {
     width: 36px;
     height: 36px;
     border-radius: 9px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.85rem;
     flex-shrink: 0;
     margin-top: 1px;
 }

 .nfi-icon.orange {
     background: rgba(245, 166, 35, 0.12);
     color: var(--orange);
 }

 .nfi-icon.green {
     background: rgba(34, 197, 94, 0.12);
     color: var(--green);
 }

 .nfi-icon.blue {
     background: rgba(37, 99, 235, 0.1);
     color: var(--accent);
 }

 .nfi-icon.red {
     background: rgba(239, 68, 68, 0.1);
     color: var(--red);
 }

 .nfi-body {
     flex: 1;
     min-width: 0;
 }

 .nfi-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 3px;
 }

 .nfi-text {
     font-size: 0.72rem;
     color: var(--muted);
     line-height: 1.4;
 }

 .nfi-time {
     font-size: 0.64rem;
     color: var(--light);
     margin-top: 4px;
 }

 .nfi-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--orange);
     flex-shrink: 0;
     margin-top: 6px;
 }

 /* ═══════════════ FILTER SELECT═══════════════ */
 .filter-select-wrap {
     position: relative;
 }

 .filter-select-wrap::after {
     content: '\f107';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     right: 12px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--muted);
     font-size: 0.65rem;
     pointer-events: none;
 }

 .filter-select {
     border: 1.5px solid var(--border);
     border-radius: 25px;
     padding: 7px 30px 7px 13px;
     font-family: 'Poppins', sans-serif;
     font-size: 0.72rem;
     color: var(--text);
     background: #fff;
     outline: none;
     appearance: none;
     cursor: pointer;
     transition: border-color 0.2s;
 }

 .filter-select:focus {
     border-color: var(--orange);
 }

 /* ════════════ TOAST NOTIFICATIONS ══════════════ */
 .toast-container {
     position: fixed;
     bottom: 22px;
     right: 22px;
     z-index: 9999;
     display: flex;
     flex-direction: column;
     gap: 8px;
     pointer-events: none;
 }

 .toast {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     padding: 12px 16px;
     background: var(--card-bg);
     border-radius: 12px;
     box-shadow: 0 6px 24px rgba(26, 60, 110, 0.16);
     border-left: 3px solid var(--orange);
     min-width: 260px;
     max-width: 340px;
     pointer-events: all;
     animation: toast-in 0.25s ease;
 }

 @keyframes toast-in {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .toast.toast-success {
     border-color: var(--green);
 }

 .toast.toast-danger {
     border-color: var(--red);
 }

 .toast.toast-info {
     border-color: var(--accent);
 }

 .toast-icon {
     font-size: 1rem;
     margin-top: 1px;
     flex-shrink: 0;
     color: var(--orange);
 }

 .toast.toast-success .toast-icon {
     color: var(--green);
 }

 .toast.toast-danger .toast-icon {
     color: var(--red);
 }

 .toast.toast-info .toast-icon {
     color: var(--accent);
 }

 .toast-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.78rem;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 2px;
 }

 .toast-msg {
     font-size: 0.7rem;
     color: var(--muted);
 }

 /* ═════════════  FOOTER ═════════════ */
 .app-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 26px;
     border-top: 1px solid var(--border);
     background: #f5a623;
     font-size: 0.85rem;
     color: #fff;
     font-family: 'Poppins', sans-serif;
     gap: 12px;
     flex-wrap: wrap;
 }

 .footer-status {
     display: flex;
     align-items: center;
     gap: 7px;
 }

 .status-dot-green {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: var(--green);
 }

 /* ================ DESKTOP SIDEBAR COLLAPSE ================== */

 body.sidebar-collapsed .sidebar {
     width: 78px;
 }

 body.sidebar-collapsed .app-main {
     margin-left: 78px;
 }

 body.sidebar-collapsed .brand-name,
 body.sidebar-collapsed .brand-sub,
 body.sidebar-collapsed .nav-label,
 body.sidebar-collapsed .nav-hint,
 body.sidebar-collapsed .nav-badge,
 body.sidebar-collapsed .sf-info {
     display: none;
 }

 body.sidebar-collapsed .sidebar-brand,
 body.sidebar-collapsed .sidebar-footer {
     justify-content: center;
 }

 body.sidebar-collapsed .nav-link {
     justify-content: center;
     padding: 10px;
 }

 body.sidebar-collapsed .nav-icon {
     margin: 0;
 }



 /* Desktop Collapse */

 .sidebar.collapsed {
     width: 90px;
 }

 .sidebar.collapsed .brand-text,
 .sidebar.collapsed .nav-label,
 .sidebar.collapsed .nav-hint,
 .sidebar.collapsed .nav-badge,
 .sidebar.collapsed .sf-info {
     display: none;
 }

 .app-main.expanded {
     margin-left: 90px;
 }





 /* ======================  MOBILE SIDEBAR CLOSE BUTTON ===================== */

 .mobile-sidebar-close {
     position: absolute;
     top: 18px;
     right: 18px;

     width: 42px;
     height: 42px;

     border: none;
     border-radius: 12px;

     background: #fff;
     color: #111;

     font-size: 18px;
     cursor: pointer;

     display: none;
     align-items: center;
     justify-content: center;

     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

     z-index: 9999;
 }