.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.h-450px {
    height: 28.125rem;
}

.max-w-md {
    max-width: 28rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.border {
    border-width: 1px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.flex-grow {
    flex-grow: 1;
}

.p-4 {
    padding: 1rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.max-w-70p {
    max-width: 70%;
}

.p-3 {
    padding: 0.75rem;
}

.p-1 {
    padding: 0.25rem;
}

.p-0 {
    padding: 0rem;
}

.border-t {
    border-top-width: 1px;
}

.border-0 {
    border-width: 0px !important;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

button[data-size="icon"] {
    height: 2.5rem;
    width: 2.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: end;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-md {
    border-radius: 0.375rem;
}

.text-sm,
input.text-sm::placeholder,
textarea.text-sm::placeholder {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.shrink-0 {
    flex-shrink: 0;
}

.block {
    display: block;
}

.align-center {
    align-content: center;
}

.grid {
    display: grid;
}

.place-center {
    place-items: center;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

[data-commentor="bot"] {
    align-items: start;
}

[data-commentor="user"] {
    align-items: end;
}

[data-commentor="bot"]>div:last-of-type {
    background-color: var(--pico-color-zinc-350);
    color: black;
}

[data-commentor="user"]>div:last-of-type {
    background-color: var(--pico-color-blue-350);
    color: black;
}

.overflow-y-auto {
    overflow-y: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.text-black {
    color: black;
}

.text-white {
    color: white;
}

[aria-busy="true"] {
    display: initial;
}

.hidden {
    display: none;
}

.h-3 {
    height: 0.75rem;
}

.w-3 {
    width: 0.75rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.bg-transparent {
    background-color: transparent;
}

.text-center {
    text-align: center;
    
}

.pointer-all {
    pointer-events: all;
}

.pointer-none {
    pointer-events: none;
}