/* Эта добавка для создания краткого содержания статьи в самом начале
Нужно это оформить, чтобы получилась небольшая таблица внутри кода на css, а внутри должен быть маркированный точками  список. Два столбца а строки определяются маркированный списком в каждом столбце. Ширина таблицы 90%. 
Высота в зависимости от содержимого. Отдельный файл для css у меня есть. Еще чтобы были закругленные углы синего      цвета вокруг # таблицы. */

.custom-table-wrapper {
    width: 90%;
    margin: 20px auto;
}

.custom-table-title {
    text-align: center;
    /* color: #1e88e5; */
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px; /* Разрядка 1 пробел */
    padding: 1px;
    background: rgba(30, 136, 229, 0.8); /* Прозрачность 70% */
    color: white;
    border-radius: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.custom-table-container {
    width: 100%;
    display: flex;
    border: 2px solid #1e88e5;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

.custom-table-column {
    flex: 1;
    padding: 0 15px;
}

.custom-table-column:not(:last-child) {
    border-right: 1px dashed #1e88e5;
}

.custom-table-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
}

.custom-table-list li {
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
      
}

.custom-table-list li:last-child {
    margin-bottom: 0;
}

/* АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ */

/* Планшеты и небольшие экраны */
@media (max-width: 1024px) {
    .custom-table-wrapper {
        width: 95%;
    }
    
    .custom-table-container {
        padding: 15px;
    }
    
    .custom-table-column {
        padding: 0 10px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .custom-table-wrapper {
        width: 100%;
        margin: 15px auto;
    }
    
    .custom-table-title {
        font-size: 1.3em;
        padding: 8px 12px;
        margin-bottom: 12px;
    }
    
    .custom-table-container {
        flex-direction: column;
        padding: 15px;
        border-radius: 12px;
    }
    
    .custom-table-column {
        padding: 10px 0;
        width: 100%;
    }
    
    .custom-table-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px dashed #1e88e5;
        padding-bottom: 15px;
    }
    
    .custom-table-list {
        padding-left: 25px;
    }
    
    .custom-table-list li {
        margin-bottom: 10px;
        line-height: 1.5;
    }
}
/* Дополнительные улучшения для очень больших экранов */
@media (min-width: 1440px) {
    .custom-table-wrapper {
        max-width: 1200px;
    }
    
    .custom-table-container {
        padding: 25px;
    }
    
    .custom-table-list li {
        font-size: 1.05em;
        margin-bottom: 10px;
    }
}

ul li {
  list-style: none;
}