#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
}

#cookieBanner p {
    margin: 0;
    font-size: 14px;
}

#cookieBanner a {
    color: #00c6ff;
    text-decoration: underline;
}

#cookieBanner button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-right: 3%;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#cookieBanner button:hover {
    background-color: #0056b3;
}
