/* sidebar-vote.css — CSS модуля modules\sidebar_vote */

.sidebar__vote-item {
  margin-bottom: 10px;
}

.sidebar__vote-btn-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 2px 0;
}

.sidebar__vote-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(90, 185, 234, 0.14);
  border-radius: 7px;
  padding: 9px 12px;
  text-decoration: none;
  color: #d5dfea;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.sidebar__vote-btn:hover {
  background: rgba(90, 185, 234, 0.10);
  border-color: rgba(90, 185, 234, 0.38);
  color: #d5dfea;
  text-decoration: none;
  transform: translateX(3px);
}

.sidebar__vote-btn--voted {
  background: #6c757d;
}

.sidebar__vote-btn--voted:hover {
  background: #5a6268;
}

.sidebar__vote-btn-img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  flex-shrink: 0;
}

.sidebar__vote-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.sidebar__vote-btn-icon--topcraft  { background: rgba(255, 193,  50, 0.15); color: #FFC132; }
.sidebar__vote-btn-icon--mctop     { background: rgba( 90, 185, 234, 0.15); color: #5ab9ea; }
.sidebar__vote-btn-icon--mcrating  { background: rgba(154, 211,  31, 0.15); color: #9AD31F; }
.sidebar__vote-btn-icon--mineserv  { background: rgba(206, 147, 216, 0.15); color: #CE93D8; }
.sidebar__vote-btn-icon--hotmc     { background: rgba(239,  83,  80, 0.15); color: #EF5350; }

.sidebar__vote-btn-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sidebar__vote-btn-site {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar__vote-btn-label {
  font-size: 11px;
  color: #7395ae;
  line-height: 1.2;
}

.sidebar__vote-btn-arrow {
  color: #5ab9ea;
  font-size: 10px;
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.sidebar__vote-btn:hover .sidebar__vote-btn-arrow {
  opacity: 1;
  transform: translateX(2px);
}
