@media (min-width: 768px) {
  .comeet-td-mobile-title.show-on-mobile {
    display: none;
}
}

/* ============================================================================
   1. Container – וודא שהכל מיושר במרכז
   ============================================================================ */
.container.medium {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

/* ============================================================================
   2. Filter Form – פריסת Flex אחידה, ריווח נכון ו־Select2 מלא רוחב
   ============================================================================ */
.career-filter-form .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.input-wrap {
  flex: 1;
  min-width: 220px;
}

.select-wrap {
  display: flex;
  flex-direction: column;
}

.select-wrap label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.select2-container {
  width: 100% !important;
}

.select2-selection--multiple {
  min-height: 45px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* כפתור החיפוש מיושר לתחתית ושומר על גודל אחיד */
.btn-submit {
  background: #043E73;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 0.25rem; /* מוודא שיושב קרוב לתחתית השדה */
  transition: background .2s;
}
.btn-submit:hover {
  background: #032d57;
}

/* ============================================================================
   3. Table Headers – רוחב מותאם ותוספת Padding
   ============================================================================ */
.comeet-list.table .thead .tr {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
    .th.name {
        flex: 1;
        max-width: 45%;
    }
  .th.location { width: 200px; margin-left: 1rem; }
.th.cat      { width: 180px; margin-left: 1rem; }
.th.more     { width: 60px; }

/* ============================================================================
   4. Job Rows – ווידוא רוחב אחיד, ריווח ועיצוב
   ============================================================================ */
.comeet-list ul {
    padding: 0;
}
.tr-inner {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: transform .2s, box-shadow .2s;
  gap: 1rem;
}
.tr-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.comeet-position-name.td.name {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
}
.td.location {
  width: 200px;
  font-size: 0.875rem;
  color: #666;
}
.td.cat {
  width: 180px;
  font-size: 0.875rem;
  color: #666;
}
.td.more {
  width: 60px;
  text-align: right;
}
.td.more .entry-link {
  font-weight: 700;
  color: #043E73;
  transition: color .2s;
}
.td.more .entry-link:hover {
  color: #032d57;
}

/* ============================================================================
   5. Mobile Adjustments – פריסה אנכית מושלמת
   ============================================================================ */
@media (max-width: 768px) {
  
  .career-filter-form .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .input-wrap {
    min-width: auto;
  }
  .comeet-list.table .thead .tr {
    display: none;
  }
  .tr-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .td.location,
  .td.cat,
  .td.more {
    width: auto;
    margin-top: 0.5rem;
  }
  .td.cat .comeet-td-mobile-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
}





  /* הכפתור המעגלי עם Chevron */
.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #ed4e1a;
  border-radius: 50%;
  color: #fff;
  transition: background-color .2s, transform .2s;
  margin-left: auto; /* ידחוף את הכפתור לצד ימין */
}
.more-btn i {
  font-size: 28px;
  line-height: 1;
}
.more-btn:hover {
  background-color: darken(#ed4e1a, 10%);
  transform: scale(1.1);
}





.career-filter-form span.select2-selection {
    border-radius: 31px;
    min-height: 48px;
}
  
  
  .comeet-position-name.td.name {
    color: black;
}
  
  a.tr-inner {
    border-radius: 100px;
}