.aog-calculator {
  max-width: 700px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.dark-mode {
  background: #1e1e1e;
  color: #eee;
}

h2, h3 {
  text-align: center;
  color: #F43676;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input, select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

button {
  background-color: #F43676;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #c22c5e;
}

.form-actions {
  text-align: center;
}

.results, .milestones {
  margin-top: 20px;
}

.results p {
  font-size: 16px;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

.hidden {
  display: none;
}