#calcTable {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    margin-top: 15px;
}

#calcTable td, #calcTable th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

#calcTable tr:nth-child(even){
    background-color: #f2f2f2;
}

#calcTable tr:hover {
    background-color: #ddd;
}

#calcTable th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: grey;
    color: white;
}
#calcTable .total {
    background-color: #00a157;
    color: white;
    font-weight: bold;
}

.table{
    border-collapse: collapse;
    /*border-spacing: 0;*/
    empty-cells: hide;
    background: #F6D27E;
}
.table caption{
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}
.table td {
    padding: 10px 20px;
    text-align: center;
    border: 1px solid #F4EEE8;
    transition: all 0.5s linear;
}
.table td:first-child {
    text-align: center;
    color: #3D3511;
    font-weight: bold;
}
.table th {
    text-align: center !important;
    padding: 10px 20px;
    color: #3D3511;
    border-bottom: 1px solid #F4EEE8;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
/*.table td:nth-child(even) {*/
/*    background: #F6D27E;*/
/*}*/
/*.table td:nth-child(odd) {*/
/*    background: #D1C7BF;*/
/*}*/
/*.table th:nth-child(even)  {*/
/*    background: #F6D27E;*/
/*}*/
/*.table th:nth-child(odd)  {*/
/*    background: #D1C7BF;*/
/*}*/
.table tr.main {
    background: #acde9f;
    font-weight: bold;
}
.table .round-top {
    border-top-left-radius: 5px;
}
.table .round-bottom {
    border-bottom-left-radius: 5px;
}
/*.table tr:hover td{*/
/*    background: #D1C7BF;*/
/*    font-weight: bold;*/
/*}*/

.total {
    background: #edeb3a;
    font-weight: bold;
}
.total td:first-child{
    text-align: right;
}
.finaltotal {
    background: #d2dda7;
    font-weight: bold;
    font-size: 34px;
}

.calculator {
    text-decoration: none; /* Убираем подчеркивание */
    border-bottom: 1px dashed #000080; /* Добавляем свою линию */
    cursor: pointer;
}

.checkboxes td{
    padding-right:30px;
}
