:root {
      --light-pink: #F8F3EA;
      --electric-blue: #204ECF;
      --soft-pink: #FBB6C1;
    }
    * {
      box-sizing: border-box;
      font-family: 'Fredoka', sans-serif !important;
    }
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
    }
    body {
      background-color: var(--light-pink);
      color: #333;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    header {
      background-color: #CCE0FF;
      padding: 0.8rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 10;
    }
    header h1 {
      font-size: 1.7rem;
      color: var(--electric-blue);
      text-shadow: 1px 1px 0 #fff;
      margin: 0;
    }
    .menu-toggle {
      background: none;
      border: none;
      font-size: 1.1rem;
      color: var(--electric-blue);
      cursor: pointer;
      padding: 0.5rem 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
    }
    
    .menu-toggle:hover {
      background-color: #d2e2ff;
    }
    
    .menu-toggle i {
      font-size: 1rem;
    }
    .sidebar {
      position: fixed;
      top: 0;
      left: -240px;
      height: 100%;
      width: 220px;
      background-color: var(--electric-blue);
      color: white;
      padding: 2rem 1rem;
      transition: left 0.4s ease;
      z-index: 1000;
    }
    .sidebar.show {
      left: 0;
    }
    .sidebar h2 {
      margin-top: 0;
      font-size: 1.4rem;
      margin-bottom: 2rem;
    }
    .sidebar a {
      color: white;
      text-decoration: none;
      display: block;
      margin-bottom: 1rem;
      padding: 0.5rem 0.75rem;
      border-radius: 5px;
      transition: background 0.4s ease;
    }
    .sidebar a:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 999;
    }
    .overlay.show {
      display: block;
    }
    main {
      flex: 1;
    }
    .section-placeholder {
      background: white;
      border: 1px dashed #ccc;
      text-align: center;
      color: #999;
      border-radius: 10px;
    }
    /* Added explicit styles for Font Awesome icons */
    .fa-solid, .fas {
      font-family: "Font Awesome 6 Free" !important;
      font-weight: 900;
    }

/* Analytics Page Styles */
.analytics-container {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.analytics-summary {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.metric {
  text-align: center;
}
.metric h3 {
  margin: 0;
  color: var(--electric-blue);
}
.metric p {
  margin: 5px 0 0;
  font-size: 1.4rem;
  font-weight: 600;
}
#salesChart {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
