.calculator-container {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Open Sans', sans-serif;
}

.calculator-container h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
}

.xcc-form {
    display: flex;
    flex-direction: column;
}

.xcc-field {
    margin-bottom: 20px;
}

.xcc-field__title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.xcc-field__values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.xcc-field__value {
    flex: 1 1 auto;
}

.xcc-field__label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.xcc-field__label input[type="radio"] {
    margin-right: 5px;
}

.xcc-field input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 5px;
}

.xcc-results {
    margin-top: 20px;
}

.xcc-results h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.xcc-results__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.xcc-results__table th, 
.xcc-results__table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.xcc-results__table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.xcc-results__table td:nth-child(2) {
    width: 20%;
}

.xcc-results__table td:nth-child(3) {
    width: 30%;
    text-align: right;
}

.xcc-results div {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.xcc-results div span {
    font-weight: bold;
    color: #13A0B2;
}

button {
    background-color: #13A0B2;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #0f8291;
}