@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  font-family: "Inter", sans-serif;
  .sidebar {
    width: 260px;
    background: #1e293b;
    color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  .sidebar h2 {
    font-size: 20px;
    margin-bottom: 40px;
    color: #38bdf8;
    text-align: center;
  }
  .sidebar a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
    display: block;
  }
  .sidebar a:hover,
  .sidebar a.active {
    background: #334155;
    color: white;
  }
}
