/* Extend Scroll Area - Allow scrolling further down */

/* Make conversation details area taller to allow more scrolling */
.tk-area-conversations,
.sb-area-conversations {
    overflow-y: scroll !important;
    padding-bottom: 40px !important; /* Add invisible padding at bottom */
}

/* Add invisible spacer at the end */
.tk-area-conversations::after,
.sb-area-conversations::after {
    content: "";
    display: block;
    height: 50px; /* Extra scroll space */
    width: 100%;
    pointer-events: none;
}

/* Ensure scroll container allows overflow */
.tk-scroll-area,
.sb-scroll-area {
    overflow-y: scroll !important;
    padding-bottom: 30px !important;
}

/* Make sure we can scroll past the attachments */
.tk-panel-attachments {
    margin-bottom: 40px !important;
}

/* Remove height restriction on attachments */
.tk-panel-attachments {
    max-height: none !important;
}

/* Smooth scrolling */
* {
    scroll-behavior: smooth;
}