body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
   max-width: 600px;
            margin: 50px auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

h1, h2 {
    color: #333;
}
.price-note {
    text-align: center;      /* wyśrodkowanie tekstu */
    font-weight: bold;       /* pogrubienie */
    font-size: 18px;         /* nieco większa czcionka niż normalny tekst */
    margin: 10px 0 20px 0;   /* odstęp nad i pod tekstem */
    color: #333;             /* pasujący kolor do nagłówków */
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.price-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

.price-table td:first-child {
    text-align: left;
    width: 70%;
}

.price-table td:last-child {
    text-align: left; /* Można zmienić na "right", jeśli wolisz ceny wyrównane do prawej */
    font-weight: bold;
    white-space: nowrap;
}

.back-to-home {
    margin-top: 30px;
    text-align: center;
}
.map-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* aby mapa była tak szeroka jak treść */
    padding-bottom: 56%; /* proporcje 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin: 30px auto 0 auto; /* odstęp + WYŚRODKOWANIE */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
#cookie-banner {
    display: none; 
    position: fixed; /* zawsze na dole ekranu */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    color: #333;
    padding: 15px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 9999; /* zawsze na wierzchu */
    font-size: 14px;
}

#cookie-banner p {
    display: inline;
    margin: 0;
    padding-right: 10px;
}

#cookie-banner a {
    color: #0077cc;
    text-decoration: underline;
}

#cookie-banner button {
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

#cookie-banner button:hover {
    background-color: #005fa3;
}

