/* Контейнер для списка подписок/подписчиков */
.subscribe-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    overflow-y: auto;
    height: 70%;
    scrollbar-width: thin;
    scrollbar-color: grey #121212;
    padding: 0px 10px 0px 10px;
}

/* Заголовок "Подписчики" или "Подписки" */
.subscribe-header {
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    text-transform: capitalize;
    margin: 32px 0px 23px;
}

/* Список пользователей */
.subscribe-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transition: none;
}

/* Элемент пользователя в списке */
.subscribe-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgb(33, 33, 33);
    box-sizing: border-box;
    margin-bottom: 5px;
}

/* Аватар пользователя */
.subscribe-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Для круглого аватара */
}

/* Никнейм пользователя */
.subscribe-username {
    color: rgb(230, 230, 230);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 8px;
    flex-grow: 1; /* Чтобы никнейм занимал всё доступное пространство */
}

/* Кнопка "Подписан"/"Отписаться" */
.subscribe-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Статус подписки */
.subscribe-status {
    color: rgb(65, 135, 45); /* Зеленый цвет, когда подписан */
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer; /* Указываем, что это кликабельный элемент */
    transition: color 0.3s ease; /* Плавный переход цвета */
}

/* При наведении меняется текст и цвет */
.subscribe-status:hover {
    color: red;
    content: "Отписаться";
}

.username-link {
    text-decoration: none; /* Убираем подчеркивание */
    color: inherit; /* Оставляем цвет таким, как у обычного текста */
}

.no-data {
    text-align: center;
}

.data-gif {
   display: inline-flex;
}

.no-data-gif {
    position: relative;
    display: flex;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
}

