body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 260px;
  background-color: #191919;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
}

.sidebar h1 {
  font-size: 16px;
  margin: 0 0 20px 0;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Liens et icônes */
/* Liens et icônes - identique à Notion */
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;           /* espace entre icône et texte */
  padding: 6px 10px;  /* padding vertical + horizontal comme Notion */
  margin-bottom: 6px; /* espace vertical entre les liens */
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  color: #ddd;
  transition: background 0.2s, color 0.2s;
}

.nav-link img {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.nav-link:hover {
  background-color: #2a2a2a;
  color: #fff;
}


/* Main content */
.content {
  flex-grow: 1;
  background-color: #ffffff;
  padding: 32px;
  box-sizing: border-box;
}

.content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.content p {
  font-size: 16px;
  color: #444;
}
