#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #f1f1f1;
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none; /* Initially hidden */
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-consent-banner p {
    margin: 0;
    padding-right: 120px; /* Space for the button */
}

#cookie-consent-banner a {
    color: #4CAF50;
    text-decoration: underline;
}

#cookie-consent-accept {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#cookie-consent-accept:hover {
    background-color: #45a049;
}
