.jobui-emoji-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.jobui-emoji-box {
  text-align: center;
  width: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.jobui-emoji-box:hover {
  transform: scale(1.08);
}

.jobui-emoji {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.jobui-emoji-label {
  font-size: 11px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

.jobui-filter-button {
  background-color: #00cfff;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.jobui-filter-button:hover {
  background-color: #00a3cc;
}
.jobui-filter-button {
  background: linear-gradient(135deg, #00cfff, #00d59c);
  color: #ffffff;
  border: none;
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 213, 156, 0.3);
  display: inline-block;
  margin-top: 20px;
  
}

.jobui-filter-button:hover {
  background: linear-gradient(135deg, #00a3cc, #00b388);
  box-shadow: 0 6px 20px rgba(0, 213, 156, 0.45);
  transform: translateY(-2px);
}

.jobui-filter-button:active {
  transform: scale(0.97);
}


.jobui-filter-button {
  display: block;
  margin: 20px auto 0;
  /* שאר העיצוב נשאר כמו קודם */
}


/* ===== עטיפת טופס הסינון (ממרכז את הטופס) ===== */
.jobui-filter-wrapper {
  display: flex;
  justify-content: center;   /* מרכז אופקית */
  align-items: center;       /* מרכז אנכית (אם יש גובה מספיק) */
  min-height: 40vh;
  margin-top: 30px;
}



/* ===== אלמנטים בתוך הטופס (שדות) ===== */
.jobui-filter-form > * {
  flex: 0 0 100%;
  max-width: 100%;
   justify-content: center;
  align-items: center;
  
}

.jobui-filter-form select,
.jobui-filter-form input[type="number"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  background-color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border-radius: 50px !important;
  font-weight: 600;
  color: #000;
  margin-top: 20px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


