.chat-container .input-box {
    background: transparent;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.chat-container .input-box textarea:focus {
    border: none;
}

.chat-container .input-box textarea {
    flex-grow: 1;
    resize: none;
    padding: .5rem;
    min-width: 0;
}

.chat-container .form-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-container .form-container .tools {
    display: flex;
    align-items: center;
    margin-top: 0;
}


.chat-popup {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 25%;
    border-radius: 8px 8px 0 0;
    z-index: 1000;
    padding: 2px;
    height: 75vh;
}

.chat-popup-alt {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
    bottom: 0;
    left: 0;
}

#chat-title {
    margin: 6px;
}

#close-button {
    margin: 1px;
}

#chat-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    padding: .25rem;
}

.chat-messages {
    overflow: auto;
    display: flex;
    flex-grow: 1;
}

.chat-suggestion {
    text-align: center;
    gap: 4px;
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 1px;
}

.draggable2 {
    touch-action: none;
    user-select: none;
    z-index: 1;
    position: absolute !important;
    right: 20px;
    bottom: 20px;
}

.hidden {
    display: none;
}

#chat-input {
    padding: 0;
}