body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #b30059;
  margin-bottom: 30px;
}

.profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  width: 280px;
  padding: 15px;
  text-align: left;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 8px;
}

.card .info {
  margin-top: 12px;
}

.card .info p {
  margin: 4px 0;
}

.whatsapp-button {
  display: block;
  margin-top: 10px;
  background-color: #25d366;
  color: white;
  padding: 8px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
/* filter bar container */
.filter-bar {
  display: flex;
  gap: 20px;
  margin: 20px auto;   /* centers the bar with auto left/right margins */
  padding: 15px 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  align-items: center;
  justify-content: center;   /* ✅ center contents inside */
  flex-wrap: wrap;
  max-width: 600px;   /* keep it nicely contained */
}


/* group label + select */
.filter-group {
  
}

.filter-group label {
  margin-bottom: 5px;
}

/* modern dropdown styling */
.filter-group select {
  padding: 8px 12px;
  font-size: 15px;
  border-radius: 8px;
  background: #f9f9f9;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:hover {
  border-color: #888;
  background: #fff;
}

.filter-group select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}
.clear-btn {
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  background: #dc3545;   /* red button */
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.clear-btn:hover {
  background: #b02a37;   /* darker red on hover */
}
