/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f0f4f8;
}

/* Sidebar */
.sidebar {
  width: 220px;
  height: 100vh;
  background: #1e293b;
  color: white;
  position: fixed;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 15px;
}

.sidebar-logo .logo {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 18px;
}

.sidebar a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
}

.sidebar a:hover {
  background: #334155;
}

/* Main content */
.main {
  margin-left: 220px;
  padding: 20px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card h3 {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

.card p {
  font-size: 28px;
  margin-top: 10px;
  font-weight: bold;
}

/* Section */
.section {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 15px;
}
