/* ===== BASE STYLES ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0e0e10;
  color: #fff;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  width: 240px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  z-index: 10;
}

.sidebar .logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 16px 0;
}

.sidebar ul li a {
  text-decoration: none;
  color: #ccc;
  font-weight: 500;
  transition: 0.2s ease;
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
}

.sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: 260px;
  padding: 40px;
}

/* ===== DASHBOARD BOXES ===== */
.dashboard-overview {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dashboard-overview .box {
  flex: 1;
  min-width: 250px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.dashboard-overview .box:hover {
  transform: translateY(-6px);
}

.dashboard-overview .box h3 {
  font-size: 28px;
  color: #fff;
  margin: 0;
}

.dashboard-overview .box p {
  color: #bbb;
  margin-top: 8px;
}

/* ===== GRAPH PLACEHOLDER ===== */
.graph-placeholder {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #999;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===== CTA / GLOW BUTTONS (from original) ===== */
.cta-section {
  background: linear-gradient(to right, #FE6602, #ff3300);
  color: #fff;
  position: relative;
  z-index: 1;
}

.glow-button {
  background-color: #000;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(254, 102, 2, 0.6);
  transition: all 0.3s ease;
}

.glow-button:hover {
  background-color: #111;
  box-shadow: 0 0 25px rgba(254, 102, 2, 1);
  transform: scale(1.05);
}

/* ===== GLASS CARDS (from original) ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
}
