* {
    font-family: "DM Sans", sans-serif;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .font-display {
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  body {
    background: #dfeeff;
    min-height: 100vh;
    color: #1f2937;
  }

  .transition-smooth {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .gradient-primary {
    background: linear-gradient(135deg, #2f9eff 0%, #1678d9 100%);
  }

  .gradient-success {
    background: linear-gradient(135deg, #56bfff 0%, #2f9eff 100%);
  }
  .gradient-warning {
    background: linear-gradient(135deg, #ffb547 0%, #ff9a1f 100%);
  }
  .gradient-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #cc4040 100%);
  }
  .gradient-info {
    background: linear-gradient(135deg, #56bfff 0%, #1678d9 100%);
  }
  .gradient-secondary {
    background: linear-gradient(135deg, #6f9cf6 0%, #3f57c2 100%);
  }

  .shadow-card {
    box-shadow:
      0 10px 15px -3px rgba(0, 0, 0, 0.04),
      0 4px 6px -2px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
  .shadow-card-hover {
    box-shadow:
      0 20px 25px -5px rgba(0, 0, 0, 0.07),
      0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
  }

  .glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #f1f5f9;
  }
  ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    border: 2px solid #f1f5f9;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }

  .sidebar {
    width: 80px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(180deg, #0074f5 0%, #57ff82 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }

  .dashboard-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #c1e0ff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .dashboard-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
  }

  .kpi-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }

  .kpi-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;

    background: radial-gradient(
      circle at top right,
      rgba(140, 143, 77, 0.08) 0%,
      transparent 70%
    );
  }

  .progress-bar {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    overflow: hidden;
  }

  .progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
  }

  .detail-section {
    display: none;
    opacity: 0;
  }

  .detail-section.expanded {
    display: block;
    animation: fadeIn 0.4s ease forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .expand-icon {
    transition: transform 0.3s ease;
  }

  .expanded .expand-icon {
    transform: rotate(180deg);
  }

  .settings-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }

  .settings-panel.open {
    right: 0;
  }

  .settings-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
  }

  .settings-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  /* Flow lines */
  .flow-line {
    stroke-dasharray: 5, 5;
    animation: dash 1s linear infinite;
  }
  @keyframes dash {
    to {
      stroke-dashoffset: -10;
    }
  }

  .kpi-card {
    position: relative;
    overflow: hidden;
  }
  .kpi-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(
      circle at top right,
      rgba(140, 143, 77, 0.08) 0%,
      transparent 70%
    );
  }

  .notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    border: 2px solid white;
  }

  .metric-badge.inactive {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    color: #94a3b8 !important;
    opacity: 0.6;
  }

  .avatar-ring {
    padding: 2px;
    background: linear-gradient(135deg, #2f9eff, #1678d9);
    border-radius: 50%;
  }

  .view-btn {
    color: #64748b;
  }

  .view-btn:hover {
    color: #334155;
    background: rgba(255, 255, 255, 0.5);
  }

  .view-btn.active {
    color: #8c8f4d;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .sidebar.expanded {
    width: 256px;
  }

  .sidebar-text,
  .sidebar-section-title,
  .user-info {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .sidebar.expanded .sidebar-text,
  .sidebar.expanded .sidebar-section-title,
  .sidebar.expanded .user-info {
    opacity: 1;
    max-width: 200px;
    visibility: visible;
  }

  .sidebar-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .sidebar-logo img {
    height: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .logo-full {
    display: none;
    width: 0;
  }

  .logo-collapsed {
    display: block;
    width: 32px;
  }

  .sidebar.expanded .sidebar-logo {
    width: 160px;
    height: 60px;
    justify-content: flex-start;
  }

  .sidebar.expanded .sidebar-logo img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .sidebar.expanded .logo-full {
    display: block;
  }

  .sidebar.expanded .logo-collapsed {
    display: none;
  }

  .sidebar.expanded .sidebar-header .flex-col {
    align-items: flex-start;
  }

  .sidebar-item {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 0;
    height: 44px;
    margin: 4px 12px;
  }

  .sidebar-item i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }

  .sidebar-item:hover {
    background: rgba(47, 158, 255, 0.08);
    color: white;
  }

  .sidebar-item.active {
    background: #2f9eff;
    color: white;
    box-shadow: 0 4px 12px rgba(47, 158, 255, 0.25);
    border: none;
  }

  .sidebar.expanded .sidebar-item {
    justify-content: flex-start;
    padding: 10px 16px;
    gap: 12px;
  }

  .user-avatar-section {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .sidebar.expanded .user-avatar-section {
    justify-content: flex-start;
    padding: 0 4px;
  }

  .sidebar-toggle {
    position: absolute;
    right: -12px;
    top: 24px;
    width: 24px;
    height: 24px;
    background: #46c666;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .sidebar.expanded .sidebar-toggle {
    transform: rotate(180deg);
  }

  .sidebar-header {
    padding: 16px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .sidebar.expanded .sidebar-header {
    justify-content: flex-start;
    padding: 10px 24px;
  }

  main.expanded {
    margin-left: 256px;
  }

  header.expanded {
    left: 256px;
  }

  .footer-style {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #e5e7eb;
    background-color: #fff;
  }

  table th {
    text-align: left !important;
  }

  table th:last-child {
    display: none !important;
  }

  table td:last-child {
    display: none !important;
  }

  
  