/* Stili di base per il planner familiare */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #0066cc;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

nav {
  display: flex;
  background: #e0e0e0;
  justify-content: center;
}

nav button {
  flex: 1;
  padding: 0.75rem;
  border: none;
  background: #e0e0e0;
  cursor: pointer;
  font-size: 1rem;
}

nav button.active {
  background: #d0d0d0;
  font-weight: bold;
}

main {
  padding: 1rem;
}

.section {
  display: none;
}

.section.active {
  display: block;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form input, .form select {
  padding: 0.5rem;
  font-size: 1rem;
}

.form button {
  padding: 0.5rem 1rem;
  background: #0066cc;
  color: #fff;
  border: none;
  cursor: pointer;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  background: #fff;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list li span {
  flex: 1;
}

.list button {
  border: none;
  background: transparent;
  color: #cc0000;
  cursor: pointer;
  font-size: 1rem;
}

footer {
  background: #f0f0f0;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}