.icon {
    width: 16px;
    height: 16px;
    background-color: #db7e27; /* Цвет кружка */
    color: white; /* Цвет буквы */
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-left: 3px;
}
.harvest-icon {
    background-color: #db7e27; /* Цвет кружка */
}
/*.icon:hover {
    background-color: #2980b9;
}*/
.icon::after {
    content: attr(data-tooltip); /* Текст из атрибута HTML */
    position: absolute;
    bottom: 125%; /* Позиция над кружком */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}
.icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.positions-container div.dt-layout-table {
    font-size: 0.9em !important;
}
.stream-date {
    font-style: italic;
    text-align: center;
}
.stream-info {
    display: none;
}
.stream-info > div, .stream-info-left > div {
    padding: 5px;
}
.stream-info, .stream-info-info {
    font-size: 0.9em;
}
.stream-info-info {
    padding-top: 5px;
}
.stream-info-flex-container {
    display: flex;
    & > div {
        flex: 1;
    }
}
