
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1e1e1e;
  color: #f0f0f0;
}
.navbar {
  display: flex;
  justify-content: space-between;
  background-color: #111;
  padding: 1em 2em;
}
.logo {
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1em;
}
.nav-links li a {
  color: #ccc;
  text-decoration: none;
}
.nav-links li a:hover {
  color: white;
}
main {
  padding: 2em;
}
.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
}
button {
  background-color: #333;
  color: white;
  border: none;
  padding: 0.7em 1.5em;
  margin-top: 1em;
  cursor: pointer;
}
button:hover {
  background-color: #555;
}

.card {
  background-color: #2a2a2a;
  padding: 1em;
  border-radius: 10px;
  text-align: center;
  max-width: 220px;
  margin: 0.5em;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  font-size: 0.9em;
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5em;
}

.card p {
  max-height: 120px;
  overflow-y: auto;
  text-align: left;
  font-size: 0.85em;
}

.profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  padding: 1em 0;
}

