
#cookie-consent-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #005aa7;
    color: white;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

#cookie-consent-bar a {
    color: #f7931e;
    text-decoration: underline;
}

#cookie-consent-bar .ccb-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#ccb-accept-btn {
    background-color: #f7931e;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

#ccb-accept-btn:hover {
    background-color: #e67e00;
}

.ccb-hidden {
    display: none;
}
