/* Resetování základních stylů */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

/* Container pro centraci obsahu */
.container {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Obecné styly pro tabulku */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Styly pro hlavičku tabulky */
.price-table thead {
    background-color: #333;
    color: white;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
}

.price-table th {
    font-size: 1.2em;
}

.price-table td {
    font-size: 1em;
    color: #555;
}


/* Responzivita pro mobilní zařízení */
@media (max-width: 768px) {
    .price-table thead {
        display: none;
    }

    .price-table,
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }

    .price-table tr {
        margin-bottom: 20px;
    }

    table tr td:nth-child(odd) {
        font-weight: bold;
    }

    .price-table td {
        position: relative;
        padding-left: 5vw;
    }

    .price-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
    }
}


