body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

.calculator {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
}

h1 {
    text-align: center;
    color: #333;
}

label {
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.calc-button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.calc-button:hover {
    background-color: #0056b3;
}

.result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.info-message {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f8ff;
    border: 1px solid #007bff;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}
.checkbox-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.checkbox-row input[type="checkbox"] {
    width: 25px; /* Увеличение ширины */
    height: 25px; /* Увеличение высоты */
    margin-right: 15px; /* Отступ от текста */
}

.checkbox-row label {
    flex: 1; /* Текст занимает оставшееся место */
    text-align: right; /* Текст выравнивается по правому краю */
    font-size: 16px;
    font-weight: bold;
}
