
#formFooter {
    margin-top: 8px;
    padding: 12px 16px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flexbox;
    gap: 8px;
    align-items: flex-end;
}

#formFooter textarea {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    resize: none;
    font-size: 14px;
    outline: none;
    line-height: 1.4;
}

#formFooter textarea:focus {
    border-color: #229ed9;
}

#formFooter button,
#formFooter [type="button"] {
    padding: 10px 14px;
    width: 100%;
    background: #229ed9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
}

#formFooter button:hover,
#formFooter [type="button"]:hover {
    background: #007acc;
}