body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px; /* Zwiększona szerokość, aby tabela była czytelniejsza */
    width: 100%;
}

h1 {
    color: #0056b3;
    margin-bottom: 20px;
}

/* Styl dla tabeli */
.price-list-container {
    overflow-x: auto; /* Przewijanie poziome na małych ekranach */
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

thead {
    background-color: #0056b3;
    color: #fff;
}

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

tbody tr:hover {
    background-color: #f5f5f5;
}

/* Styl dla linków */
a {
    display: inline-block;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
    margin-top: 20px;
}

a:hover {
    background-color: #0056b3;
}

.footer {
    margin-top: auto;
    padding-top: 20px;
    color: #666;
    font-size: 0.9em;
}

/* Zapytania mediów dla małych ekranów (np. telefony) */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
        margin: 10px auto;
    }

    th, td {
        padding: 8px 10px;
        font-size: 0.9em;
    }

    /* Ustawienie wierszy w tabeli w pionie na małych ekranach */
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        border: 1px solid #ccc;
        margin-bottom: 5px;
    }

    td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    td:before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
}