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

/* Hover effect if you like 
.preset-item:hover {
    background: #f3f4f6;
}
*/

/* Active preset (highlight) */
.preset-item--active {
    background: var(--light-testit-blue);      /* same as conv-item */
    border-left: 3px solid var(--testit-green-web);
}

/* Left side: icon + text */
.preset-item__left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Settings cog button */
.preset-item__settings-icon {
    flex-shrink: 0;
}

/* Text container (title + subtitle) */
.preset-item__text {
    display: flex;
    flex-direction: column;
}

/* Preset name */
.preset-item__title {
    font-weight: 600;
    color: var(--testit-blue);
    font-size: 14px;
    line-height: 1.2;
}

/* Preset subtitle / meta line */
.preset-item__subtitle {
    font-size: 12px;
    color: var(--muted-text);
    line-height: 1.2;
}

/* Right-side icon container */
.preset-item__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: auto;
}

/* Delete button */
.preset-item__delete-icon {
    /* margin-left set inline; but you can also put it here */
    margin-left: 6px;
}

/* If you want to hide delete for system presets in CSS instead of inline: */
.preset-item--system .preset-item__delete-icon {
    visibility: hidden;
}