/* CSS for the cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #333333;
    color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    font-family: Arial, Helvetica, sans-serif;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-content a {
    color: #1e90ff;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    background-color: #1e90ff;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: #4682b4;
}

#reject-cookies {
    background-color: #555555;
}

#reject-cookies:hover {
    background-color: #777777;
}

@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-banner-buttons {
        margin-top: 10px;
        justify-content: center;
    }
}