dialog[data-id="select-sku-dlg"] {
    .items {
        .item {
            cursor: pointer;
            user-select: none;
            border-radius: 5px;

            placeholder {
                overflow: hidden;
                border-radius: 5px;
            }

            & > * {
                pointer-events: none;
            }  

            [data-name="discount"],
            .currency-unit {
                font-size: 0.75rem;
            }

            p {
                flex-grow: 0;
                line-height: 1.25rem;
            }

            [data-name="sub_title"] {
                font-size: 0.8rem;
            }

            [data-name="selling-price"] {
                font-size: 1.20rem;
            }

            & > div:last-child {
                p:last-child {
                    font-size: 0.9rem;
                    text-align: right;
                }
            }
        }
    }
}

:root[data-theme="light"] {
    dialog[data-id="select-sku-dialog"] {
        .items {
            .item {
                background-color: var(--light-card-bg-color);
            }
        }
    }
}

:root[data-theme="dark"] {
    dialog[data-id="select-sku-dialog"] {
        .items {
            .item {
                background-color: var(--dark-card-bg-color);
            }
        }
    }
}