#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f4f4f4;
    color: black;
    padding: 20px;
    text-align: center;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif !important;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 999;
    padding: 0 1rem !important; /* Zmniejszenie paddingu na urządzeniach mobilnych */
    font-size: 10px;
}

#cookieBanner button {
    margin: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 8px;
    align-self: center;
    height: auto;
    max-height: 20px;
    line-height: 1;
    padding: 5px 10px;
}

#cookieBanner p {
    margin: 0 !important;
}

#acceptButton {
    background-color: #4CAF50;
    color: white;
}

/* Media query dla urządzeń o szerokości mniejszej niż 768px (typowy rozmiar mobilny) */
@media (max-width: 768px) {
    #cookieBanner {
        padding: 10px;
    }

    #cookieBanner button {
        font-size: 12px;
    }
}