/* be.native custom branding */

/* Logo on welcome/landing page: ~65% size */
header img[alt="logo"] {
    max-height: 2rem;
    width: auto;
}

/* ── Footer branding ── */
#benative-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(55, 55, 55, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.benative-footer-logo {
    height: 18px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.benative-footer-logo:hover {
    opacity: 1;
}

.benative-footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.benative-footer-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    user-select: none;
}

.benative-footer-email {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.benative-footer-email:hover {
    color: rgba(255, 255, 255, 0.9);
}

.benative-footer-email svg {
    flex-shrink: 0;
}

/* Push everything up so the LLM disclaimer text stays visible above footer */
.cl-chat-footer,
[class*="watermark"],
[class*="disclaimer"] {
    margin-bottom: 36px !important;
}
