/*system.css*/

.system-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.system-buttons button {
  flex: 1;
  margin: 0;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: #ffd6ea;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}

.system-buttons button:hover {
  background: #ffc3e0;
  transform: translateY(-2px);
}

.system-buttons button.active {
  background: #ff8fc6;
  color: white;
  box-shadow: 0 0 10px rgba(255, 120, 190, 0.6);
}

.system-panel {
  display: none;
  margin-bottom: 20px;
}

.user-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
