/* تصميم استمارة الوظائف */
.travia-job-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  background-color: #ffffff;
  /* Apply font here to avoid conflicts with theme body styles */
  font-family: 'Tajawal', sans-serif;
}
.travia-job-wrapper {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}
.travia-form label {
  display: block;
  margin-bottom: 5px;
  color: #003385;
  font-weight: bold;
}
.travia-form input[type="text"],
.travia-form input[type="email"],
.travia-form input[type="file"],
.travia-form input[type="url"],  /* أُضيف هذا السطر */
.travia-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #000;
}
.travia-form button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.travia-form button {
  background-color: #0177E3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 100%;
}
.travia-form button:hover {
  background-color: #FFB700;
}
.travia-success {
  margin-top: 15px;
  color: green;
  font-weight: bold;
  display: none;
}
.travia-error {
  margin-top: 10px;
  color: red;
  font-weight: bold;
  display: none;
}
