#wm-pro-data-calculator {
    max-width: 100%;
    margin: 0 auto;
}

#calculator-form {
    display: flex;
    flex-direction: column;
}

#calculator-form label {
    margin-top: 10px;
}

#calculator-form select {
    margin-bottom: 10px;
}

#results {
    margin-top: 20px;
}

#results div {
    margin-bottom: 10px;
}


.wm-calculator {
    /* General styles for the calculator */
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 600px;
    margin: 0 auto;
}

.wm-calculator form {
    display: flex;
    flex-direction: column;
}

.wm-calculator label {
    margin-top: 10px;
    font-weight: bold;
}

.wm-calculator select,
.wm-calculator button {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.wm-calculator button {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

.wm-calculator button:hover {
    background-color: #005177;
}

.wm-calculator #results {
    margin-top: 20px;
}

.wm-calculator table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.wm-calculator th,
.wm-calculator td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.wm-calculator th {
    background-color: #0073aa;
    color: white;
}

.wm-calculator td span {
    display: block;
}
#results table tbody tr td:nth-child(5) {
    background-color: #42464f; /* Replace with your desired color */
    color: #fff;
}
#results table tbody tr td:nth-child(2),
#results table thead tr th:nth-child(2),
#results table tbody tr td:nth-child(4),
#results table thead tr th:nth-child(4){
 
}
