ul {
    list-style: none; /* Убираем стандартные маркеры */
    padding-left: 0;
    margin-left: 0;
}

ul li::before {
    content: '';
    display: inline-block;
    width: 8px; /* Задаем нужную ширину */
    height: 8px; /* Задаем нужную высоту */
    background-image: url("https://static.tildacdn.com/tild3266-3862-4632-b134-303838343436/Ellipse_1_1.png");
    background-size: contain; /* Сохраняем пропорции */
    background-repeat: no-repeat;
    margin-right: 10px; /* Отступ от текста */
    padding-left: 0;
    margin-left: 0;
}

table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}