/* Cookie consent banner styles — replaces all inline style attributes */

#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
#cookieBanner > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
#cookieBanner p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}
#cookieBanner a {
    color: #60a5fa;
    text-decoration: underline;
}
#cookieBanner button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}
.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}
#cookieBanner button.cookie-btn-essential {
    background: #475569;
}
#cookieBanner button.cookie-btn-analytics {
    background: #2563eb;
}
#cookieBanner button.hidden {
    display: none !important;
}
