/* Blogger Channels List Styles */

.blogger-channels-list {
    display: none !important; /* Скрываем список других каналов */
    flex-direction: column !important;
    width: 100%;
    margin-top: 16px;
    padding: 0;
    gap: 12px;
    visibility: hidden !important;
    opacity: 0 !important;
    min-height: 0;
    position: relative;
    z-index: 10;
}

.blogger-channel-card {
    background: rgba(200, 200, 200, 0.15) !important;
    border: none;
    border-radius: 20px;
    padding: 12px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
    min-height: 80px;
}

.blogger-channel-card:hover {
    background: rgba(200, 200, 200, 0.2) !important;
    transform: translateY(-1px);
}

.blogger-channel-card:active {
    transform: scale(0.98);
}

.blogger-channel-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #1a1a1a;
}

.blogger-channel-avatar .channel-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #1a1a1a;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.blogger-channel-avatar .channel-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.blogger-channel-avatar .channel-photo-placeholder i {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.3);
}

.blogger-channel-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blogger-channel-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blogger-channel-subscribers {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af !important;
}

.blogger-channel-price {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    flex-shrink: 0;
}
