.participants-module {
  margin: 20px 0;
}

.participants-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-inline: auto;
}

.participants-tabs .tab {
  color: #423d39;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  padding: 10px 15px;
  background: none;
  border: 1px #eee solid;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}

.participants-tabs .tab:hover {
  background: #feb261;
}

.participants-tabs .tab.active {
  background: #f79228;
  color: white;
}

.participants-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.participants-list .category-group {
  display: none;
  width: 100%;
}

.participants-list .category-group.active {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.participants-list a {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  background: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  flex: 1 1 calc(33.333% - 15px);
  min-width: 200px;
  max-width: 300px;
}

.participants-list a:hover {
  text-decoration: none;
  background: #fef6e4;
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
