.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    color: #333;
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.cookie-banner p {
    margin-bottom: 10px;
}

.cookie-banner button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #45a049;
}

.cookie-banner a {
    color: #007bff;
    text-decoration: underline;
}