.job-details-container {
  max-width: 100%;
  margin: 40px auto;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding:0px;
}

.job-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.job-info-item {
  width: calc(50% - 10px);
  margin-bottom: 10px;
}

.job-info-item table {
  border: 2px;
}

.job-info-item span {
  font-weight: bold;
}

.job-description,
.job-additional-info-item {
  font-size: 2vm;
  line-height: 1.5;
  color: #333;
  border: 2px;
  box-shadow: 2px 1px 5px black;
  padding: 5px;
  margin: 5px;
  overflow-x: auto;
  max-width: 100%;
}

.job-description table,
.job-additional-info-item table {
  width: 100%;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.job-description th,
.job-description td,
.job-additional-info-item th,
.job-additional-info-item td {
  font-size: 14px;
  padding: 5px;
  word-break: break-all;
  overflow-wrap: break-word;
}

.job-description h1,
.job-description h2,
.job-description h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.job-description h2,
.job-additional-info-item h2 {
  background-color: red;
  color: white;
}

.job-description ul,
.job-description ol,
.job-additional-info-item ul,
.job-additional-info-item ol {
  margin-left: 20px;
  padding-left: 20px;
  text-align: left;
}

.job-description img,
.job-additional-info-item img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

.job-additional-info {
  margin-bottom: 20px;
  display: block;
}

.job-additional-info-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  overflow-x: auto;
  max-width: 100%;
  width: 100%;
}

.apply-button {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.apply-button:hover {
  background-color: #3e8e41;
}

@media (max-width: 768px) {
  .job-info-item {
    width: 100%;
  }
  .job-additional-info-item {
    width: 100%;
  }
  .job-description table,
  .job-additional-info-item table {
    font-size: 12px;
  }
  
  .job-description th,
  .job-description td,
  .job-additional-info-item th,
  .job-additional-info-item td {
    padding: 3px;
  }
}

figure.table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

figure.table table {
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  overflow-wrap: break-word;
}

figure.table th,
figure.table td {
  word-break: break-all;
  overflow-wrap: break-word;
  padding: 5px;
}

@media (max-width: 768px) {
  figure.table {
    font-size: 12px;
  }
  
  figure.table th,
  figure.table td {
    padding: 3px;
  }
}

