/* Base conversation row */
.conversation-item {
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}



/* Active / selected conversation */
.conversation-item--active,
.conversation-item--active:hover {
    background: var(--light-testit-blue);
    border-left: 3px solid var(--testit-green-web);
}

/* Left block (texts) */
.conversation-item__left {
    flex: 1;
}

/* Title */
.conversation-item__title {
    font-weight: 600;
    color: var(--testit-blue);
    font-size: 14px;
}

/* Technical ID + date */
.conversation-item__id,
.conversation-item__date {
    font-size: 12px;
    color: var(--muted-text);
}

/* Right action icons container */
.conversation-item__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: auto;
}

/* Individual icon buttons */
.conversation-item__icon-btn {
    cursor: pointer;
    margin-left: 8px;
    pointer-events: auto;
    z-index: 10;
}