#cookie-banner {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #101012;
    border-top: 1px solid rgba(207, 208, 212, 0.2);
    padding: 1rem 1.5rem;
}

#cookie-banner .cookie-banner-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

#cookie-banner .cookie-banner-text {
    margin: 0;
    color: #ccc;
    font-size: 0.875rem;
    flex: 1;
    min-width: 200px;
}

#cookie-banner .cookie-banner-text a {
    color: #EFFB53;
    text-decoration: underline;
}

#cookie-banner .cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    align-items: center;
}

#cookie-banner .cookie-banner-actions .theme-btn {
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
}

#cookie-banner .cookie-decline-link {
    background: none;
    border: none;
    color: #888;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-family: inherit;
}

#cookie-banner .cookie-decline-link:hover {
    color: #ccc;
}
