/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0e0e11;
  color: #ffffff;
  display: flex;
  height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 240px;
  background: #14141a;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 20px;
  letter-spacing: 1px;
}

.logo span {
  font-size: 12px;
  opacity: 0.6;
}

.menu {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.menu a {
  color: #b5b5c5;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 14px;
}

.menu a:hover,
.menu a.active {
  background: #1f1f2b;
  color: #ffffff;
}

/* MAIN */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* TOPBAR */
.topbar {
  height: 60px;
  background: #14141a;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1f1f2b;
}

.topbar h2 {
  font-size: 18px;
}

.user {
  font-size: 14px;
  opacity: 0.8;
}

/* CONTENT */
.content {
  padding: 20px;
}

.card {
  background: #14141a;
  border-radius: 10px;
  padding: 20px;
  max-width: 500px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  opacity: 0.7;
}