/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Style for the overall section */
#emplois-section {
  font-family: 'Arial', sans-serif;
  padding: 20px;
}

/* Style for the form and filters */
.view-filters form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

/* Style for form items */
.form-item {
  margin-right: 10px;
}

/* Select wrapper style */
.select-wrapper {
  position: relative;
  display: inline-block;
  width: 200px; /* Adjust as needed */
}

/* Select dropdown style */
.form-select {
  padding: 5px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Button style */
.button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Button hover effect */
.button:hover {
  background-color: #0056b3;
}

/* Message when no jobs are available */
.view-empty {
  color: #666;
  padding: 10px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
}
