.responsive-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #696969;
    border-radius: 8px;
    overflow: hidden;
}

.responsive-table thead {
    display: table-header-group;
}

.responsive-table th {
    background-color: white;
    padding: 16px 20px;
    text-align: left;
    color: #b00000;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
}

.responsive-table th:first-child {
    text-align: left;
}

.responsive-table th:last-child {
    text-align: right;
}

.responsive-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e0e0e0;
    color: #696969;
    vertical-align: top;
}

.responsive-table td:first-child {
    text-align: left;
}

.price {
    font-weight: bold;
    color: #b00000;
    white-space: nowrap;
    text-align: right;
}

.responsive-table tr:last-child td {
    border-bottom: none;
}

.comment {
    padding: 35px 20px;
    text-align: left;
    color: #696969;
    font-size: 13px;
}


/* Мобильная адаптация */
/* Мобильная адаптация - компактный табличный вид */
/* Мобильная адаптация - компактная таблица с символами */
@media screen and (max-width: 600px) {
    .responsive-table {
        border: 1px solid #b00000;
        border-radius: 8px;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        display: table;
        width: 100%;
    }

    .responsive-table thead {
        display: table-header-group;
    }

    .responsive-table th {
        padding: 12px 15px;
        text-align: left;
        color: #b00000;
        font-weight: 600;
        border-bottom: 1px solid #e0e0e0;
    }

    .responsive-table th:first-child {
        text-align: left;
        width: 60%;
    }

    .responsive-table th:last-child {
        text-align: right;
        width: 40%;
    }

    .responsive-table th:last-child:after {
        margin-left: 4px;
    }

    .responsive-table tbody {
        display: table-row-group;
    }

    .responsive-table tr {
        display: table-row;
    }

    .responsive-table td {
        display: table-cell;
        padding: 10px 15px;
        border-bottom: 1px solid #e0e0e0;
        vertical-align: middle;
    }

    .responsive-table td:first-child {
        text-align: left;
        color: #696969;
    }

    .responsive-table td.price {
        text-align: right;
        font-weight: bold;
        color: #696969;
    }

    .responsive-table tr:last-child td {
        border-bottom: none;
    }
}