body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #1c1c1c, #2c2c2c);
  margin: 0;
  padding: 20px;
  color: white;
}

.meter-container {
  max-width: 500px;
  margin: auto;
  background: #121212;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.gauge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge {
  position: relative;
  width: 200px;
  height: 100px;
  margin-bottom: 20px;
}

.gauge-arc {
  width: 100%;
  height: 100%;
  background: conic-gradient(#444 0deg, #444 180deg);
  border-radius: 100px 100px 0 0;
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.3);
}

.needle {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 90px;
  background: white;
  transform-origin: bottom center;
  transform: rotate(-90deg);
  transition: transform 0.2s ease-out;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
}

.center-dot {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
}

.needle {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 90px;
  background: red;
  transform-origin: bottom center;
  transform: rotate(-90deg);
  transition: transform 0.2s ease-out;
  box-shadow: 0 0 6px rgba(255,0,0,0.6);
}

.labels {
  position: absolute;
  width: 200px;
  height: 100px;
  top: 0;
  left: 0;
  pointer-events: none;
}

.label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 0.7em;
  color: white;
  font-weight: bolder;
}

.score-glow {
  font-size: 2.5em;
  font-weight: bold;
  color: #00e5ff;
  text-shadow: 0 0 12px rgba(0,229,255,0.8);
}

.unit {
  font-size: 0.6em;
  color: #ccc;
}

.wellness-message {
  text-align: center;
  font-weight: 500;
  margin: 20px 0;
  font-size: 1.1em;
  color: #eee;
}

.meter-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  background: #00bcd4;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

button:hover {
  background: #0097a7;
}

.about-section {
  margin-top: 30px;
  font-size: 0.9em;
  color: #aaa;
}

/* Form Page Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #e3f2fd, #fce4ec);
  margin: 0;
  padding: 20px;
}

.form-container {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

/* Mental Wellness Form Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #e3f2fd, #fce4ec);
  margin: 0;
  padding: 20px;
}

.form-container {
  max-width: 500px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  color: #333;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #444;
}

input,select {
  width: 100%;
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

input:focus,
select:focus {
  outline: none;
  border-color: #0078D7;
  box-shadow: 0 0 5px rgba(0, 120, 215, 0.3);
  background-color: #fff;
}

button {
  margin-top: 25px;
  margin-right: 10px;
  width: 100%;
  padding: 12px;
  font-size: 1em;
  background: #0078D7;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

button:hover {
  background: #005fa3;
}