/**
 * Cookie Consent Banner Styles
 * Matches original Borlabs design
 */
#CookieConsentBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #1e3744;
    color: #fff;
    font-family: 'Barlow', Helvetica, Arial, sans-serif;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

#CookieConsentBanner .cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
}

#CookieConsentBanner h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 15px 0;
}

#CookieConsentBanner p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

#CookieConsentBanner a {
    color: #ec7758;
    text-decoration: none;
}

#CookieConsentBanner a:hover {
    text-decoration: underline;
}

#CookieConsentBanner .cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

#CookieConsentBanner .cookie-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

#CookieConsentBanner .cookie-btn-accept {
    background: #ec7758;
    color: #fff;
}

#CookieConsentBanner .cookie-btn-accept:hover {
    background: #d9624a;
    text-decoration: none;
}

#CookieConsentBanner .cookie-btn-essential {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

#CookieConsentBanner .cookie-btn-essential:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

#CookieConsentBanner .cookie-links {
    margin-top: 15px;
    font-size: 12px;
}

#CookieConsentBanner .cookie-links a {
    color: rgba(255,255,255,0.6);
    margin-right: 15px;
}

#CookieConsentBanner .cookie-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    #CookieConsentBanner .cookie-inner {
        padding: 20px;
    }

    #CookieConsentBanner .cookie-buttons {
        flex-direction: column;
    }

    #CookieConsentBanner .cookie-btn {
        text-align: center;
    }
}
