/* Style for the cookie consent popup */
.ccp-cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    display: none; /* Hidden by default, displayed via JS */
}
.ccp-cookie-popup button {
    background-color: #ffcc00;
    border: none;
    padding: 10px 20px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}
