/* Ввід імені */
.mafia-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.mafia-input-group label {
  font-size: 12px;
  font-weight: bold;
  color: #8ab9d6;
  text-transform: uppercase;
}
.mafia-input-group input {
  padding: 12px 15px;
  border: 2px solid #e8f0f8;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #1b3b5a;
  outline: none;
  transition: border-color 0.2s;
}
.mafia-input-group input:focus {
  border-color: #2196f3;
}

/* Список гравців */
.mafia-players-box {
  background: #f5f7fa;
  padding: 15px;
  border-radius: 15px;
}
.mafia-players-box h3 {
  font-size: 14px;
  color: #1b3b5a;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.mafia-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mafia-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: bold;
  color: #1b3b5a;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.mafia-list li span.host-badge {
  background: #ffd700;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 5px;
  margin-left: auto;
}

/* Налаштування ролей */
.role-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f4f8;
}
.role-name {
  font-weight: bold;
  font-size: 14px;
  color: #1b3b5a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.role-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.role-btn {
  background: #e8f0f8;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #1b3b5a;
  cursor: pointer;
  transition: transform 0.1s;
}
.role-btn:active {
  transform: scale(0.9);
}
.role-count {
  font-weight: 900;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Кнопка старту */
#btn-mafia-start:disabled {
  background: #a0aab5 !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
