#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    text-align: center;
}
.buttons {
    margin-top: 10px;
}
.buttons button {
    margin: 0 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#acceptCookies {
    background-color: #4CAF50;
    color: white;
}
#rejectCookies {
    background-color: #f44336;
    color: white;
}
