#product-calculator-form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

#product-calculator-form input,
#product-calculator-form select,
#product-calculator-form button {
    display: block;
    width: 100%; /* Adjust width to account for padding and border */
    margin-top: 5px;
    padding: 10px;
}

#product-calculator-form button {
    background-color: #d00000;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
    width: 100%;
    margin-top: 15px;
}

#product-calculator-form button:hover {
    background-color: #005177;
    width: 100%;
}

#calculator-result {
    flex: 1;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #d00000;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #000000;
    font-size: 15px;
    margin-top: 60px;
    margin-left: 10px;
}

#calculator-result h2 {
    color: #d00000; /* Red color for the 'Result' heading */
    font-size: 20px; /* Font size for the heading */
    font-weight: 600;
    margin: 0 0 10px; /* Margin to separate heading from the result text */
}

#calculator-result #result-content {
    color: #000000;
    white-space: pre-wrap;
}

/* Ensure the form and result sections are displayed in a two-column layout */
#product-calculator-container {
    display: flex;
}

#product-calculator-form {
    flex: 1; /* Form takes 50% of the container width */
    padding: 20px;
}
