body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf7f9;
  color: #4a4a4a;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

h1 {
  color: #b88ca2;
  text-align: center;
}

.container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.col-gauche {
  flex: 1;
  min-width: 300px;
}

.col-droite {
  flex: 2;
  min-width: 400px;
}

.bloc {
  background-color: #fff;
  border: 1px solid #e0d4dc;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

label, input, select, button, textarea {
  display: block;
  margin: 10px 0;
  width: 100%;
}

button {
  background-color: #b88ca2;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #9c7aa2; /* violet plus foncé */
}

ul {
  padding-left: 20px;
}

a {
  color: #b88ca2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#calendrier {
  max-width: 100%;
}

#listePros li,
#listeMembres li,
#listeRappels li,
#listeJour li {
  margin-bottom: 8px;
  padding: 8px;
  background-color: #fdf0f5;
  border-radius: 5px;
}

#listePros li span {
  display: block;
}

.postit {
  background-color: #fff8c6;
  border: 1px dashed #d4c000;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.postit textarea {
  width: 100%;
  height: 100px;
  border: none;
  background: transparent;
  font-size: 1em;
  resize: vertical;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar .logo img {
  height: 40px;
  width: auto;
  margin-right: 20px; /* espace entre logo et bouton retour */
}

.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;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
