.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #2c2c2c;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 20px;
    font-weight: bold;
}

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