/* 侧边栏紧凑样式 */
.sidebar-wrapper {
  width: 190px;
  flex: 0 0 190px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.sidebar-compact {
  font-size: 0.8rem;
  width: 190px !important;
  flex: 0 0 190px !important;
  max-width: 190px !important;
}

/* 游戏内容区域自适应 */
.games-content-wrapper {
  flex: 1;
  min-width: 0; /* 防止flex项目溢出 */
}

.sidebar-compact .list-group-item {
  padding: 0.3125rem 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border-radius: 0.25rem;
  margin-bottom: 0.125rem;
  cursor: pointer;
}

.sidebar-compact .list-group-item:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.sidebar-compact .list-group-item.active {
  background-color: #fff !important;
  color: #000 !important;
}

.sidebar-compact h5 {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.sidebar-compact .fas {
  font-size: 0.75rem;
}