.pbi-page {
    width: 100%;
    padding: 0;
}

.pbi-nav {
    overflow-x: auto;
    padding-block: 4px;
}

.pbi-nav-inner {
    display: inline-flex;
    min-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
    padding-inline: 8px;
}

.full-embed {
    width: 100%;
    /* Fill viewport minus navbar (~52px) and compact nav bar (~34px) */
    height: calc(100vh - 100px);
}

/* AI chatbot help page: full-width iframe filling viewport below the navbar */
.ai-help-iframe {
    display: block;
    width: 100%;
    height: calc(100vh - 3.25rem);
    border: 0;
}

.pdf-container,
canvas {
    margin: 0;
    padding: 0;
}

canvas {
    display: block;
}

.field-list {
    max-height: 650px;
    overflow-y: auto;
}

/* Navbar */
.navbar.is-primary {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.navbar-burger span {
    background-color: black;
}

/* Highlight items that are actual tools (wrench icon) */
.tool-highlight {
    border-left: 4px solid #00b4a0; /* teal accent */
    background: rgba(0, 180, 160, 0.06);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.tool-highlight .panel-icon i {
    color: #00b4a0;
}

/* Login page */
.login-box {
    max-width: 480px;
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}