/* Input Fields Styling */
input[type="text"] {
    color: black !important;
    font-size: 16px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Label Styling */
label {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Result Styling */
.Calculator_detail span {
    font-weight: normal;
    font-size: 16px;
    color: #333;
}

.Calculator_detail b {
    font-weight: bold;
    font-size: 18px;
}

/* For clarity, we remove currency sign from results in final output */
#profit,
#totalSales {
    font-weight: bold;
    color: #333;
}
