/* percent-to-fraction-calculator.css */
.main-input-box {
  border: 1px solid #ccc;
  padding: 10px;
  min-height: 40px;
  margin-bottom: 10px;
}

.solve-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

.solve-button:hover {
  background-color: #0056b3;
}

.answer-box {
  margin-top: 10px;
  font-size: 1.2em;
}

.hidden {
  display: none;
}

.steps-buttons {
  margin-top: 10px;
}

.login-please-text {
  color: red;
}

/* Updated Final Answer Box styling:
 - Uses Flexbox for vertical centering.
 - Left-aligned content.
 - A fixed height (adjust if needed). */
.final-answer-box {
  display: flex;
  align-items: center;           /* Vertically centers the content */
  justify-content: flex-start;   /* Left-aligns the content */
  margin-top: 10px;
  font-size: 1em;
  height: 40px;                  /* Fixed height for proper centering */
  padding: 0 10px;
}

/* Step Explanation styling */
.step-explanation {
  font-size: 16px;
  font-weight: bold;
  margin: 15px 0;
  text-align: left;
  background-color: transparent;
}

/* Step Answer styling */
.step-answer {
  display: flex;
  justify-content: center;
  background-color: #e0e0e0;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  font-size: 14px;
}
