.five-summary-calculator {
  max-width: 600px;
  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 !important;
  color: #eee;
}

.dark-mode select,
.dark-mode textarea {
  background: #2b2b2b;
  color: #fff;
  border: 1px solid #555;
}

h2 {
  text-align: center;
  color: #F43676;
}

.form-group {
  margin-bottom: 20px;
}

textarea, select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

button {
  background-color: #F43676;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #c22c5e;
}

.form-actions {
  text-align: center;
}

.results {
  margin-top: 20px;
  background: #fdfdfd;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.tooltip-icon {
  cursor: pointer;
  color: #F43676;
  font-weight: bold;
  margin-left: 6px;
}

.tooltip-text {
  display: none;
  font-size: 14px;
  background-color: #fefefe;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 8px;
}

.dark-mode .tooltip-text {
  background-color: #2e2e2e;
  border-color: #555;
}