body {
  font-family: sans-serif;
  background-color: #fdf6f9;
  margin: 0;
  padding: 0;
}

/* Barre de navigation */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: white;
  border-radius: 0 0 8px 8px;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  z-index: 100;
}

.navbar .logo img {
  height: 40px;
  width: auto;
  margin-right: 20px;
}

.retour button {
  background: #f8bbd0;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.retour button:hover {
  background: #f48fb1;
}

.menu select {
  width: 200px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Conteneur principal */
.container {
  max-width: 800px;
  margin: 100px auto 40px;
  background: #ffffffcc;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

/* Titre */
h1 {
  margin-bottom: 20px;
  color: #333;
}

/* Zone date */
#datePerso {
  font-family: "Dancing Script", cursive;
  font-size: 1.4em;
  border: none;
  border-bottom: 2px solid #aaa;
  margin-bottom: 20px;
  text-align: center;
  background: transparent;
  width: 60%;
}

/* Humeur */
.humeur {
  margin-bottom: 20px;
}

.humeur button {
  font-size: 1.6em;
  margin: 0 8px;
  cursor: pointer;
  background: none;
  border: none;
}

#humeurChoisie {
  font-size: 2em;
  margin-bottom: 20px;
}

/* Zone journaling */
textarea {
  width: 100%;
  height: 300px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #d8cfd6;
  border-radius: 10px;
  resize: vertical;
  background: #fff;
  margin-bottom: 20px;
}

/* Boutons actions */
.actions {
  margin-top: 12px;
}

.actions button {
  margin: 5px;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  background-color: #ffb6c1;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.actions button:hover {
  background-color: #ffa5b4;
}
.journal-layout {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.journal-sidebar {
  width: 200px;
  background: #fce4ec;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.journal-sidebar h3 {
  margin-top: 0;
  color: #d81b60;
  font-size: 18px;
}

#listeJournaux {
  list-style: none;
  padding: 0;
}

#listeJournaux li {
  background: #fff;
  margin: 8px 0;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

#listeJournaux li:hover {
  background: #f48fb1;
}

.journal-main {
  flex: 1;
  min-width: 300px;
}
