/* cookies.css */
#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #E3DEDA;
    color: #333333;
    text-align: center;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    z-index: 1000;
}

#cookieConsent a {
    color: #333333;
    text-decoration: underline;
}

#cookieConsentContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

#acceptCookies {
    background-color: #333333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}

#acceptCookies:hover {
    background-color: #333333;
}
