.name-list-container
{
  font-family: 'Arial', sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.name-list-title
{
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3498db;
}

.name-list
{
  list-style: none;
  padding: 0;
  margin: 0;
}

.name-item
{
  padding: 12px 15px;
  margin-bottom: 8px;
  background-color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  color: #34495e;
}

.name-item:hover
{
  background-color: #f0f8ff;
  transform: translateX(-5px);
  border-left-width: 6px;
}

.name-item:active
{
  transform: scale(0.98);
}

.name-item.highlight
{
  background-color: #e3f2fd;
  font-weight: bold;
  color: #1a73e8;
  border-left-color: #1a73e8;
}

/* Responsive Design */
@media (max-width: 768px)
{
  .name-list-container
  {
    padding: 15px;
  }

  .name-item
  {
    padding: 10px 12px;
    font-size: 16px;
  }
}