/* CSS: UPSC Calculator Styling */
.upsc-calculator-wrapper {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  font-family: Helvetica, sans-serif;
  color: #333;
}

.upsc-calculator-wrapper h2 {
  color: #004d91;
  text-align: center;
  margin-bottom: 20px;
}

.upsc-calculator-wrapper label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
}

.upsc-calculator-wrapper input,
.upsc-calculator-wrapper select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.upsc-calculator-wrapper button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #004d91;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.upsc-calculator-wrapper button:hover {
  background-color: #003366;
}

#result {
  margin-top: 20px;
  padding: 15px;
  background-color: #e6f7ff;
  border: 1px solid #b3d8ff;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
}

.download-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.download-buttons button {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  background-color: #004d91;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.download-buttons button:hover {
  background-color: #003366;
}
