.job-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

 .job-header {
  background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
  border-top: 3px solid #FF0000;
  border-bottom: 3px solid #FF0000;
  padding: 5px;
  text-align: center;
  border-radius: 20px;
}

.job-main-title {
 font-size:medium;
color: white;
text-shadow: 2px 2px 5px black, -2px -2px 5px red;
margin: 0;
padding: 5px;
font-weight: bold;
}

.job-sub-title {
  font-size: large;
   text-shadow: 2px 2px 5px white, -2px -2px 5px white;
  color: green;
  margin: 5px 0;
}
.job-content {
  padding: 20px;
}

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

.job-card {
  position: relative;
  background: #f9f9f9;
  border-radius: 10px;
  flex: 1;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
   border-bottom: 1px solid #FF0000;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h3 {
  margin: 0 0 5px;
  font-size: 13px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 5px;
}

.job-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-card ul li {
  margin-bottom: 5px;

}

.job-card p {
 
  margin: 0;
  line-height: 1.6;
}

.job-important {
  color: #7b1fa2;
  font-weight: bold;
  margin-top: 15px;
  display: block;
}



.jobs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
   
   }
 

.jobs-table th,
.jobs-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.jobs-table th {
  background-color: #FFD700;
  color: #333;
  font-weight: bold;
}

.jobs-table tbody tr:hover {
  background-color: #f1f1f1;
} 
.jobs-table a {text-decoration: none;}

.jobs-table a:hover {
  color:red;
}
.total-posts {min-width: 25px;}
.imp-notice {
  background-color: #fff3e0;
  border: 1px solid #ffcc80;
  padding: 5px;
  color: #ef6c00;
  font-weight: bold;
}

.notice-header {
        font-size: 1.5em;
        font-weight: bold;
        color: #007BFF;
    }
    .step {
        margin: 15px 0;
        padding-left: 20px;
    }
    .step-title {
        font-weight: bold;
        margin-top: 10px;
    }
   
    .note {
      background: #fff3cd;
      border: 1px solid #ffeeba;
      padding: 15px;
      border-radius: 8px;
      margin: 20px 0;
      color: #856404;
  }

 @media (max-width: 768px) {

     .job-content {
  padding: 5px;
}

.job-section {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 20px;
}

.job-card {
  font-size:11px;
  padding: 5px;
 border-bottom: 2px solid #FF0000;
}
.job-container b {color: red;}

 }
