/* Manatal Job Board Plugin Styles */

.manatal-job-search {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.manatal-job-search input[type="text"] {
  padding: 10px;
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.manatal-job-search button {
  padding: 10px 15px;
  background-color: #1e40af;
  color: white;
  border: none;
  border-radius: 5px;
  transition: 0.3s ease;
}
.manatal-job-search button:hover {
  background-color: #067429;
}

.job-list {
  list-style: none;
  padding: 0;
}
.job-item {
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.job-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.job-item a {
  text-decoration: none;
  color: #1f2937;
}
.job-item button {
    margin-top: 10px;
    background: #067429;
    color: white;
    border: none !important;
    padding: 12px;
    border-radius: 5px !important;
    cursor: pointer !important;
}
.job-item button:hover {
  background: #067429;
}
.job-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-info {
  flex-grow: 1;
}

.elementor-button {
  background-color: #067429;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
  border-color: #067429 !important;
}

.elementor-button:hover {
  background-color: #067429;
}

.pagination a {
  margin-right: 10px;
  padding: 6px 12px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 5px;
  text-decoration: none;
}
.pagination a:hover {
  background: #e5e7eb;
}

.job-description {
  background: #f9fafb;
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
}

form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
form input[type="text"],
form input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  margin-top: 5px;
}
form button[type="submit"] {
  background: #067429;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}
form button[type="submit"]:hover {
  background: #067429;
}
.manatal-alert {
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
}
.manatal-alert-success {
  background-color: #e6f9ed;
  color: #1d643b;
  border: 1px solid #a4d4b4;
}
.manatal-alert-error {
  background-color: #fdecea;
  color: #611a15;
  border: 1px solid #f5c6cb;
}
.job_form label {
  margin-bottom: 1.4rem;
  line-height: normal;
  font-size: 16px;
}
.job_form input, .job_form select {
  margin-top: 12px !important;
}
.job_details .back, .job_form .back {
  font-size: 14px;
  color: #000;
}
.job-list, .manatal-job-search, .job_form, .job_details{
  font-family: "Montserrat", Sans-serif;
}
.job_form label a {
  color: #067429 !important;
}
.job_form {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .job_form {
    width: 100%;
    margin: 0 auto;
  }
  .manatal-job-search input {
    margin-bottom: 10px;
  }
  .manatal-job-search {
    display: block;
  }
}

