@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Layout for the whole page */
  body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    display: flex;
    min-height: 100vh;
    background: #ffffff;
    color: #000000;
  }
  
  /* Sidebar Styling */
  .sidebar {
    width: 250px;
    background: #ffffff;
    color: #000000;
    padding: 24px 20px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    border-right: 1px solid #000000;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
  
  .sidebar h2 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    color: #000000;
  }
  
  .sidebar ul {
    list-style: none;
    padding-left: 0;
    padding-bottom: 24px;
  }
  
  .sidebar ul li {
    margin: 20px 0;
  }
  
  .sidebar ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 12px 14px;
    border-radius: 14px;
    display: block;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  
  .sidebar ul li a:hover {
    color: #000000;
    background: #ffffff;
    transform: translateX(4px);
  }
  
  /* Main Content Styling */
  .main-content {
    margin-left: 250px;
    padding: 28px 28px 40px;
    width: calc(100% - 250px);
    max-width: 1440px;
  }

  .header,
  .dashboard-panel {
    position: relative;
    overflow: hidden;
  }
  
  /* Header Styling */
  .header {
    background: #ffffff;
    color: #000000;
    text-align: left;
    border-radius: 0;
    margin-bottom: 28px;
    padding: 28px 30px;
    border: 1px solid #000000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
  }
  
  .header::after {
    content: '';
    display: none;
  }

  .header-copy {
    position: relative;
    z-index: 1;
  }

  .header h1 {
    margin: 6px 0 0;
    font-size: clamp(1.8rem, 2.6vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .header .dashboard-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f5f7fb;
    color: #000000;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid #000000;
  }

  .header p {
    max-width: 640px;
    margin-top: 12px;
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
  }

  .header-status {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    position: relative;
    z-index: 1;
  }

  .status-card {
    min-width: 150px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #000000;
  }

  .status-card.accent {
    background: #f0fdf4;
  }

  .status-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000000;
    margin-bottom: 8px;
  }

  .status-card strong {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: #000000;
  }

  .dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
  }

  .action-chip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #000000;
    box-shadow: none;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .action-chip i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #000000;
    border: 1px solid #000000;
    font-size: 0.95rem;
  }

  .action-chip:hover {
    transform: translateY(-3px);
    box-shadow: none;
    border-color: #000000;
  }
  
  /* Dashboard Overview */
  .dashboard-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #ffffff;
    border: 1px solid #000000;
    padding: 22px 18px 20px;
    box-shadow: none;
    border-radius: 18px;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--card-accent, #22c55e);
  }

  .card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    border-color: #000000;
  }

  .card-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--icon-bg, #f8fafc);
    color: #000000;
    font-size: 1rem;
    position: absolute;
    top: 16px;
    left: 16px;
  }

  .card h3 {
    margin: 18px 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
  }
  
  .card p {
    font-size: 2.45rem;
    line-height: 1;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.04em;
  }

  .card .metric-note {
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--pill-bg, #f8fafc);
    color: #000000;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #000000;
  }

  .card .metric-note.danger {
    background: #ffffff;
    color: #000000;
  }

  .card.jobs {
    --card-accent: #16a34a;
    --icon-bg: #dcfce7;
    --pill-bg: #dcfce7;
  }

  .card.enrollments {
    --card-accent: #2563eb;
    --icon-bg: #dbeafe;
    --pill-bg: #dbeafe;
  }

  .card.accepted {
    --card-accent: #ef4444;
    --icon-bg: #fee2e2;
    --pill-bg: #fee2e2;
  }

  .card.selected {
    --card-accent: #d97706;
    --icon-bg: #fef3c7;
    --pill-bg: #fef3c7;
  }

  .dashboard-panel {
    margin-top: 22px;
    padding: 24px 26px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #000000;
    box-shadow: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
  }

  .panel-label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f8fafc;
    color: #000000;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    border: 1px solid #000000;
  }

  .dashboard-panel h2 {
    margin-top: 12px;
    font-size: 1.4rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
  }

  .dashboard-panel p {
    margin-top: 10px;
    max-width: 720px;
    color: #000000;
    line-height: 1.7;
  }

  .panel-steps {
    display: grid;
    gap: 12px;
    min-width: 250px;
  }

  .panel-steps div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #000000;
  }

  .panel-steps strong {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #eef2ff;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex: 0 0 auto;
    border: 1px solid #000000;
  }

  .panel-steps span {
    color: #000000;
    font-weight: 700;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .main-content {
      margin-left: 0;
      width: 100%;
      padding: 20px 16px 28px;
    }

    .header {
      padding: 22px 18px;
      border-radius: 22px;
      grid-template-columns: 1fr;
    }

    .header-status {
      grid-template-columns: 1fr 1fr;
    }

    .dashboard-actions,
    .dashboard-panel {
      grid-template-columns: 1fr;
    }

    .dashboard-overview {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .card {
      width: 100%;
      min-height: auto;
    }
  }
  