/* Vote kick modal styles */
.vote-kick-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.vote-kick-content {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.vote-kick-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.vote-kick-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
}

.vote-kick-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}

.vote-kick-close:hover {
  color: #e74c3c;
}

.vote-kick-body {
  text-align: center;
}

.vote-kick-body p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.vote-kick-progress {
  margin: 20px 0;
  position: relative;
  height: 24px;
  background: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
}

.vote-progress-bar {
  height: 100%;
  background: linear-gradient(to right, #f39c12, #e74c3c);
  width: 0%;
  transition: width 0.3s ease;
}

.vote-count {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: bold;
  font-size: 0.9rem;
}

.vote-kick-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.vote-kick-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.vote-kick-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

.user-badge {
  position: relative;
}

.user-actions {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 5px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: opacity 0.3s ease;
}

.action-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.action-btn:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
}

.action-btn.report-btn {
  background: #f39c12;
}

.user-badge::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.user-badge:active::after {
  opacity: 0.3;
}

.user-badge.moderator {
  background: linear-gradient(to right, #3498db, #2980b9);
  border: 1px solid rgba(52, 152, 219, 0.3);
}

.moderator-tooltip {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3498db;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.user-badge.moderator:hover .moderator-tooltip {
  opacity: 1;
}

.customization-active {
  transform: scale(1.05) !important;
  box-shadow: 0 5px 20px rgba(74, 110, 255, 0.3) !important;
}

.reported-users-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-top: 5px;
  transition: all 0.2s ease;
}

.reported-users-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
}