
.profession-filter {
  background: #fff;
  border-radius: 32px;
  max-width: 800px;
  height: 90vh;
  overflow-y: auto;
  font-family: system-ui, sans-serif;
}

/* HEADER */
.profession-header {
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.profession-header h2 {
  font-size: 20px;
  font-weight: 700;
}

/* SECTIONS */
.profession-section {
  padding: 28px;
  border-bottom: 1px solid #f1f1f1;
}

.profession-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* SEARCH */
.profession-search {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 14px;
}

.profession-search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  margin-left: 10px;
}

/* TAGS */
.profession-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.profession-tags button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.profession-tags button.active {
  border: 2px solid #000;
  background: #f7f7f7;
}

/* DATES */
.profession-dates {
  display: flex;
  gap: 16px;
}

.profession-dates input {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
}

/* USERS */
.profession-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.profession-grid select {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
}

/* FOOTER */
.profession-footer {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
}

.profession-footer .profession-apply {
  background: #111;
  color: #fff;
  padding: 14px 30px;
  border-radius: 16px;
  font-weight: 700;
}

