/* Cookie Banner Styling */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #f1f1f1;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-consent-banner.active {
    transform: translateY(0);
}

.cookie-consent-text {
    margin: 0;
    font-size: 14px;
    flex-grow: 1;
}

.cookie-consent-text a {
    color: #c0a080;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}
