.jobui-plugin-wrapper {
  padding: 10px 30px 30px 30px;
  border-radius: 16px;
  margin: 0px;
  width: 100%;
  max-width: 100%;
}

/* עטיפת שורת הסינון */
.jobui-filter-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* תיבת הבחירה */
.jobui-filter-row select {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 5px 16px;
  font-size: 14px;
  border: none;
  background-color: #fff;
  font-weight: 600;
  color: #000;
  appearance: none;
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

/* כפתור סינון */
.jobui-filter-button {
  background: #0097A7 !important;
  color: #ffffff;
  border: none;
  padding: 12px 20px !important;
  font-size: 16px !important;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: left;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}

.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-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: 40px;
  height: 40px;
  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;
}

/* רספונסיביות למובייל */
@media (max-width: 480px) {
  .jobui-filter-row {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 0 8px;
  }

  .jobui-filter-row select,
  .jobui-filter-button {
    height: 44px; /* גובה אחיד */
    font-size: 14px;
    padding: 0 12px;
  }


  .jobui-filter-row select {
    flex: 1 1 auto;
    min-width: 0;
  }

  .jobui-filter-button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}
