/* Global Styling */
body {
 font-family: "Raleway", sans-serif;
  background: #f4f7f9;
  color: #333;
  padding: 20px;
  line-height: 1.6;
}

/* Form Container */
form {
  background: #fff;
  max-width: 700px;
  margin: auto;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Form Headings */
h2, h3 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Label and Input Styling */
label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

input[type="number"],
input[type="text"],
input[type="date"],
input[type="submit"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

input[type="number"]:focus,
input[type="text"]:focus,
input[type="date"]:focus {
  border-color: #2980b9;
  outline: none;
  box-shadow: 0 0 5px rgba(41, 128, 185, 0.3);
}

/* Submit Button */
input[type="submit"] {
  background-color: #2980b9;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #2471a3;
}

/* Result Styling (estimate.php) */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  background: #ecf0f1;
  padding: 10px;
  margin-bottom: 6px;
  border-radius: 6px;
}

p {
  background: #dff9fb;
  padding: 10px;
  border-left: 6px solid #3498db;
  border-radius: 4px;
  margin: 10px 0;
}

span {
  font-weight: bold;
}

/* Recommended Regime Highlight */
h3 span {
  font-size: 20px;
  font-weight: bold;
}
