/* --- Birth & Life Path Calculator Page Styles --- */
/* Form Container */
.form-container {
  font-size: 1rem;
  border-radius: 0.75rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 10px 30px -10px rgba(0, 0, 0, 0.8);
}

/* Form Image */
.form-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.75rem;
}

/* Label */
.label {
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1rem;
}

/* Input Row */
.input-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Select Dropdown */
.input-select {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.input-select:focus {
  border-color: #f97316; /* orange-500 */
  outline: none;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: #f97316; /* orange-500 */
  color: #fff;
  padding: 0.6rem 0;
  margin-top: 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #ea580c; /* orange-600 */
}

.main-heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-top: 20px;
}

.calc-form {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

.form-image {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
}

.error-message {
  color: #d32f2f;
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.form-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.form-input-group {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}

.form-select {
  width: 33%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.submit-btn {
  background: #ff7a00;
  color: white;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
  font-size: 16px;
}

.submit-btn:hover {
  background: #e86a00;
}

/* Result Section */
.result-container {
  text-align: center;
  margin-top: 30px;
}

.result-heading {
  font-size: 22px;
  font-weight: 600;
}

.highlight-text {
  color: #b30000;
}

.result-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
 margin-bottom: 2rem;
}

.result-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  width: 160px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
  background: red;
  color: #fff;
  padding: 8px;
  font-weight: bold;
}

.card-body {
  padding: 15px;
  color: #b30000;
  font-weight: bold;
  font-size: 20px;
}

.section-text {
  text-align: left;
  font-size: 1.2rem;
}

.section-title {
  font-weight: 600;
  font-size: 18px;
}

.number-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.red-circle {
  background: #d32f2f;
}

.blue-circle {
  background: #1e88e5;
}

.description-text {
  color: #555;
  text-align: left;
  font-size: 15px;
  margin-top: 10px;
}

.section-heading {
  font-size: 20px;
  color: #b30000;
  margin: 20px 0 10px 0;
  text-align: left;
}

.key-list {
  list-style: disc;
  margin-left: 25px;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

