/* Reset simple */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #f7f7f7;
  color: #222;
}

/* Header styling */
.header-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Logo */
.header-logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease;
}

.header-logo a:hover {
  color: #00a035;
}

/* Menu */
.header-menu a {
  margin: 0 1rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-menu a:hover {
  color: #00a035;
}

/* Actions (Connexion / Déconnexion) */
.header-actions .btn-simple {
  padding: 0.5rem 1rem;
  text-decoration: none;
  border: 1px solid #00a035;
  border-radius: 5px;
  color: #00a035;
  transition: all 0.3s ease;
}

.header-actions .btn-simple:hover {
  background-color: #00a035;
  color: white;
}
