.external-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.filters-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.filters-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.external-filter-select {
  width: 220px;
  height: 44px;
  background: #fff;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  padding: 0 40px 0 14px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7L10 12L15 7' stroke='%236b7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.external-filter-search {
  width: 300px;
  height: 44px;
  border: 1px solid #dfe5ef;
  border-radius: 8px;
  padding: 0 14px;
}

.filters-right .btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
}

.table-outer {
  overflow-x: auto;
  margin-top: 10px;
}

.manage-job-table {
  min-width: 1300px;
}

.external-filter-search::placeholder {
  color: #9aa4b2;
}

.header-actions {
  text-align: right;
  margin-bottom: 5px;
}

.external-header .header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.featured-cell {
  text-align: center;
  width: 90px;
}

.external-star-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #dfe5ef;
  background: #fff;
  color: #9aa4b2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}

.external-star-btn:hover {
  border-color: #c7d3e8;
  color: #6b7280;
  box-shadow: 0 4px 10px rgba(20, 30, 50, 0.08);
}

.external-star-btn.is-featured {
  border-color: #f3d072;
  background: #fff8e5;
  color: #c99700;
}

.external-star-btn.is-featured:hover {
  border-color: #e8c25f;
  background: #fff2d2;
  color: #a67c00;
}

@media (max-width: 991px) {
  .filters-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .filters-left,
  .filters-right {
    width: 100%;
    flex-wrap: wrap;
  }
}
