/* fraction-to-percent-calculator.css */

/* Input box styling */
.main-input-box {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 40px;
    margin-bottom: 10px;
}

/* Solve button styling */
.solve-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}
.solve-button:hover {
    background-color: #0056b3;
}

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

/* Utility class to hide elements */
.hidden {
    display: none;
}

/* Steps buttons styling */
.steps-buttons {
    margin-top: 10px;
}

/* Login-please text styling */
.login-please-text {
    color: red;
}

/* Final Answer box: left-aligned and vertically centered */
.final-answer-box {
    display: flex;
    align-items: center;           /* Vertical centering */
    justify-content: flex-start;   /* Left alignment */
    margin-top: 10px;
    font-size: 1em;
    height: 40px;                  /* Set a height for proper vertical centering */
    padding: 0 10px;               /* Optional: add horizontal padding */
    background-color: #f9f9f9;       /* Optional: light background */
}

/* 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;
}
