@import url("./../kassandra.colors.css");

.kassandra-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding-inline: 24px;
    background-color: var(--ks-white);
    padding-block: 12px;
    border-top: 1px solid rgba(31, 41, 55, 0.2);
}

.kassandra-input {
    flex: 1;
    margin-right: 55px;
    padding-block: 12px;
    padding-inline: 16px;
    min-width: 50px;
    border-radius: 8px;
    background-color: var(--ks-input-bg);
    font-size: 16px;
    border: 0;
    resize: none;
    line-height: 19px;
    field-sizing: content;
    max-height: calc(6 * 19px + 16px); /* 6 lines max */
    font-family: inherit;
    height: 100%;
}

.kassandra-input:focus-visible,
.kassandra-input:focus {
    outline: none;
    background-color: var(--ks-input-bg);
}

.kassandra-send {
    position: absolute;
    right: 24px;
    color: var(--ks-primary);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent;
    transition: color 0.2s ease;
    padding: 0;
}
