/* تصميم زر التقديم */
.btn-apply {
  background-color: #ac925c;
  color: white;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.btn-apply1 {
  background-color: #ac925c;
  color: rgb(255, 255, 255);
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s;
  width: 100%; /* لجعل العرض 100% */
  box-sizing: border-box; /* حتى لا يسبب الحشوة توسعاً زائد */
  display: block; /* للتأكد أنه يعامل كعنصر كتلي */
}
.job-card {
  background-color: #fff; /* خلفية البطاقة */
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.job-section h2 {
  position: relative;
  z-index: 999;
}

.job-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.job-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


/* زر التقديم داخل البطاقة */
.btn-apply1 {
  display: block;
  width: 100%;
  background-color: #ac925c;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-apply1:hover {
  background-color: #947b4e;
  transform: translateY(-2px);
}

ul {
  list-style: disc;
  padding-right: 20px;
  direction: rtl;
  text-align: right;
  list-style-position: inside;
  padding-right: 0;
  margin-right: 0;
}


.btn-apply:hover {
  background-color: #927d4e;
}

/* تفاصيل الوظيفة */
.job-details {
  background-color: #f8f9fa;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 10px;
}

/* إدخال النموذج */
.job-details input,
.job-details select {
  border-radius: 5px;
  padding: 15px;
  font-size: 14px;
}

/* رقم الهاتف في الفوتر */
.font-number {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  direction: ltr;
  text-align: right;
}


.whatsapp-button a:hover {
  background-color: #1ebd5b;
}
body {
  background-color: yellow;
}
 .file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  .file-upload-btn {
    border: none;
    color: white;
    background-color: #000000;
    padding: 8px 16px;
    font-weight: bold;
    width: 100%; /* لجعل العرض 100% */
    border-radius: 6px;
    cursor: pointer;
  }
  .file-upload-input {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
  }
  .file-name {
    margin-left: 10px;
    font-style: italic;
  }