body {
    font-family: Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    display: none; 
}

.cookie-banner button {
    margin: 0 10px;
    padding: 10px 15px;
    border: none;
    color: white;
    background-color: #007BFF;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #00ec3c;
}