#listctrl1 .record img {
    flex: 0 0 auto;      /* disables grow & shrink */
    width: 16px;         /* ¡ç REQUIRED */
    height: 16px;        /* ¡ç REQUIRED */
}

#listctrl1 .record,
#listctrl1 .record * {
    position: static !important;
}
#listctrl1 {
    position: absolute;
    left: 550px;
    top: 100px;
    width: 300px;
    height: 400px;
    background: #f5f5f5;
    border: 1px solid #333;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

#listctrl1 .record {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

#listctrl1 .record img {
	flex: 0 0 24px;     /* ¡ç CRITICAL FIX */
    width: 68px;     /* ¡ç set your real icon size */
    height: 24px;
    flex-shrink: 0;
}

#listctrl1 .img-group {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

/* All text items default width */
#listctrl1 .record .text-item {
    flex-shrink: 0;
    width: 80px;              /* default width */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* First text column */
#listctrl1 .record .first-text {
    width: 40px !important;
    flex-shrink: 0;
}

/* 3rd and 4th text among last 6 texts */
#listctrl1 .record .text-item:nth-of-type(3),
#listctrl1 .record .text-item:nth-of-type(4),
#listctrl1 .record .text-item:nth-of-type(5)

{
    width: 40px !important;
}

#listctrl1 .record.selected {
    background: #3399ff;
    color: white;
}