/* styles.css */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    z-index: 1000;
}

.cookie-consent button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

#cookieConsent {
    display: none;
    background-color: #59A5A5;
    color: #161C1C;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

#cookieConsent a {
    color: #faf8f7;
    text-decoration: underline;
    font-weight: bold;
}