.lives {
    display: flex;
    flex-wrap: wrap;
}

.live {
    width: calc(20% - 16px);
    box-sizing: border-box;
    background: #eee;
    padding: 8px;
    margin: 8px;
    border-radius: 8px;
    cursor: pointer;
}
.live:hover {
    background: #2e435e52 !important;
}

.live-br {
    border: 1px solid #454545;
}

h2 {
    color: #757693;
    
}

.pro-live {
    border: 1px solid #e46060 !important;
}

.expert-live {
    border: 1px solid #b960e4 !important;
}


.silver-live {
    border: 1px solid #00d9ff !important;
}

.streamerAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-panel {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.user-panel .tiktokUsername {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 137px;
}

.flex-page {
    display: flex;
    min-height: 74vh;
    margin-top: 20px;
    justify-content: space-between;
}

.flex-page .left-side {
    width: 100%;
}

.flex-page .right-side{
    width: 250px;
    background: #fbfbfb;
    padding: 11px;
    margin-left: 10px;
    height: 200px;
    border-radius: 8px;
}

#livesContainer {
    display: flex;
    flex-wrap: wrap;
}

.pro-label,
.silver-label {
    background: #e46060; /* Default red, override below */
    border-radius: 8px;
    color: #fff;
    padding: 0 5px;
    position: absolute;
    bottom: -5px;
    width: 26px;
    font-size: 12px;
    height: 19px;
    left: 0;
    right: 18px;
    margin: auto;
    text-align: center;
}

.silver-label {
    background: #00d9ff;
}

.game {
    display: flex;
    align-items: center;
}

.game img {
    width: 17px;
    margin-right: 4px;
}

.live-eye {
    width: 17px;
    background: #fff;
    margin-right: 4px;
}

.live-board-panel h3 {
    margin-bottom: 9px;
    font-size: 25px;
    text-align: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.short-icon {
    width: 20px;
    margin-right: 5px;
}

.info-panel {
    font-size: 20px;
}

.info-panel .row {
    display: flex;
    height: 30px;
    width: 120px;
}

.valueNumber {
    color: orange;
    padding-left: 3px;
}

/* Стили для select */
#gameFilter {
    padding: 8px 16px; /* Добавляет внутренние отступы для комфорта */
    border-radius: 4px; /* Скругление углов */
    border: 1px solid #ccc; /* Легкая рамка вокруг select */
    background-color: white; /* Белый фон */
    font-size: 16px; /* Размер шрифта */
    cursor: pointer; /* Курсор в виде указателя */
    -webkit-appearance: none; /* Убирает стандартный вид в WebKit браузерах */
    -moz-appearance: none; /* Убирает стандартный вид в Firefox */
    appearance: none; /* Убирает стандартный вид select */
    position: relative; /* Позиционирование относительно */
    display: inline-block; /* Для правильного позиционирования */
    width: 100%; /* Ширина во всю доступную ширину */
}

#gameFilter:focus {
    border-color: #0056b3; /* Синий цвет рамки при фокусе */
    outline: none; /* Убирает стандартную рамку фокуса */
}

/* Стили для стрелочки (псевдоэлементы для кастомной стрелочки) */
#gameFilter::-ms-expand {
    display: none; /* Убирает стандартную стрелку в IE */
}

#gameFilter::after {
    content: '\25BC'; /* Unicode стрелка вниз */
    position: absolute; /* Позиционирование абсолютное */
    top: 50%; /* Вертикально по центру */
    right: 10px; /* Отступ справа */
    transform: translateY(-50%); /* Центрирование по вертикали */
    pointer-events: none; /* Игнорирует клики мыши */
    color: #999; /* Цвет стрелки */
}



@media screen and (max-width:1240px) {

    .live {
        width: calc(25% - 16px);
    }
    
}


@media screen and (max-width:1042px) {

    .live {
        width: 200px
    }

    #livesContainer {
        justify-content: space-around;
    }
    
}


@media screen and (max-width:890px) {

    .flex-page .right-side {
        display: none;
    }

    .flex-page .right-side  {
        display: block;
    }

    .flex-page {
        flex-direction: column-reverse;
    }

    .right-side {
        height: 100px !important;
        width: 100% !important;
    }

    #gameFilter {
        width: 160px;
    }
 
    
}

@media screen and (max-width:470px) {

    .live {
        width: calc(50% - 16px)
    }

    .user-panel .tiktokUsername {
        width: inherit;
        font-size: 13px;
    }

    h2 {
        margin: 8px 0;
        font-size: 17px;
    }

    .right-side {
        box-sizing: border-box;
        height: 120px !important;
        width: 96% !important;
    }

   
    
}


