.bob-page {
    width: min(1180px, calc(100% - 32px));
    margin: 20px auto 48px;
}

.bob-note {
    border-left: 4px solid var(--clhigh);
    padding: 10px 12px;
    background: var(--client);
    line-height: 1.35;
}

.bob-workspace {
    display: flex;
    flex-direction: column;     /* Horizontal layout */
    justify-content: left;      /* Center horizontally */
    align-items: center;        /* Center vertically */
    gap: 10px;                  /* Spacing between items */
}

.bob-panel,
.bob-result {
    border: 1px solid var(--outline);
    background: var(--client);
    border-radius: 8px;
    padding: 16px;
    font-family: "base_font";
}

.bob-panel {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
}

.bob-subpanel,
.bob-subpanel-fill {
    border: 1px solid var(--outline);
    border-radius: 8px;
    padding: 10px;
    background: var(--bg);
    min-height: 256px;
    min-width: 256px;
}

.bob-subpanel-fill {
    width: calc(100% - 256px);
}


.bob-heading {
    font-family: "base_font";
    font-size: 22px;
    color: var(--text);
    border-bottom: 1px solid var(--outline);
    padding-bottom: 8px;
}

.bob-subheading {
    margin-top: 18px;
    font-size: 18px;
}

.bob-result {
    min-height: 430px;
}

.bob-user {
    border-bottom: 1px solid var(--outline);
    padding-bottom: 5px;
}

.bob-user-label {
    color: var(--accent-strong);
    padding-right: 5px;
}

.bob-assistant {
    width: 100%;
}

.bob-assistant-label {
    color: var(--accent);
    padding-right: 5px;
}

@media (max-width: 900px) {
    .bob-workspace {
        grid-template-columns: 1fr;
    }

}
