* {
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  margin: 0;
  background: #0e1220;
  color: #eaeaf0;
}

.layout {
  display: flex;
  height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 260px;
  background: #151a2e;
  overflow-y: auto;
}

.logo {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #5eead4;
  border-bottom: 1px solid #1f2540;
}

.menu-title {
  padding: 12px 20px;
  font-size: 12px;
  text-transform: uppercase;
  color: #9ca3af;
}

.menu-item {
  display: block;
  padding: 10px 20px;
  color: #e5e7eb;
  text-decoration: none;
  cursor: pointer;
}

.menu-item:hover {
  background: #1f2540;
}

.menu-item.active {
  background: #22c55e;
  color: #062a1b;
  font-weight: bold;
}

/* CONTENT */
.content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.btn {
  background: #22c55e;
  color: #062a1b;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.card {
  background: #151a2e;
  padding: 16px;
  border-radius: 10px;
}

.card h3 {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

.card p {
  font-size: 22px;
  font-weight: bold;
}

.table-box {
  background: #151a2e;
  padding: 16px;
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  text-align: left;
}

th {
  color: #9ca3af;
}

.success {
  color: #22c55e;
}

.warning {
  color: #facc15;
}
