        /* 1. The Container */
.job-search-container {
  display: flex;
  align-items: center;
  background-color: #f3f4f6; /* Light gray background matching the image */
  border-radius: 8px; /* Rounded corners */
  padding: 16px 24px; /* Spacing inside */
  width: 100%;
  max-width: 800px; /* Maximum width */
  box-sizing: border-box;
  transition: box-shadow 0.2s ease;
}

/* Optional: Add a subtle focus effect for better UX */
.job-search-container:focus-within {
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* 2. The Red Icon */
.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.search-icon svg {
  width: 24px;
  height: 24px;
  stroke: #dc2626; /* The specific Red color */
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 3. The Input Field */
.job-search-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #374151; /* Dark gray text color */
  outline: none; /* Removes the default blue outline */
  width: 100%;
  font-family: inherit; /* Inherit font from body */
}

/* Placeholder text color */
.job-search-input::placeholder {
  color: #6b7280; /* Medium gray */
  font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .job-search-container {
    padding: 12px 16px;
  }
  .search-icon svg {
    width: 20px;
    height: 20px;
  }
  .job-search-input {
    font-size: 14px;
  }
}
