/*
 * ==========================================================
 * REMOVE GAP BETWEEN MESSAGE LIST AND EDITOR
 * ==========================================================
 *
 * Removes white space/gap between chat messages and editor
 */

/* Remove any margin/padding between list and editor */
.tk-board .tk-conversation .tk-list {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.tk-board .tk-conversation .tk-editor {
    margin-top: 0 !important;
    padding-top: 10px !important;
}

/* Remove any gap in conversation container */
.tk-board .tk-conversation {
    gap: 0 !important;
}

/* Ensure no spacing between conversation elements */
.tk-board .tk-conversation > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Specific fix for any white rectangular space */
.tk-board .tk-conversation .tk-list + .tk-editor {
    margin-top: 0 !important;
    border-top: none !important;
}