/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f9fafc, #e5e9f0);
    color: #1f2d3d;
    padding: 18px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
    display: none;
    animation: fadeInEU 0.5s ease-in-out;
}

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

.cookie-banner a {
    color: #2a5bd7;
    text-decoration: none;
    font-weight: 600;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #2a5bd7;
    color: #ffffff;
    border: none;
    padding: 9px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.cookie-banner button:hover {
    background-color: #1d46b4;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #f9fafc, #e5e9f0);
    color: #1f2d3d;
    padding: 14px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #ccd4e0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer strong {
    font-weight: 600;
    color: #0d1b2a;
}

.disclaimer a {
    color: #2a5bd7;
    text-decoration: none;
    font-weight: 600;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Fade-in animation EU */
@keyframes fadeInEU {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
