.tab-buttons {
  display: flex;
  position: relative;
  gap: 30px;
}
.tab-buttons button {
  padding: 20px 15px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
  border-bottom: 2px solid #cfcfcf;
  color: #86868B;
  position: relative;
  text-align: left;
}

.tab-buttons button.active {
  font-size: 18px;
    list-style: none;
    padding: 20px;
    border-bottom: 2px solid #000000;
    color: #000000;
    background: #D0BB68;
}

/* Movable underline */
.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #000;
  transition: all 0.3s ease;
}

.tab-content {
  display: none;
  padding:20px;
  animation: fadeIn 0.4s ease-in-out;

}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-container{
    display: block;
}
.course-details .tab-container{
    display: block;
}
.tab-content-box {
    margin-top: 40px;
}
.job-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  max-width: 100%;
  margin-bottom: 20px;
}

.job-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.job-text {
  flex: 1;
}

.job-text h3 {
  margin: 0;
  color: #23559B;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.job-text p {
  color: #383939;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-date {
  color: #134a9f;
  font-weight: normal;
  display: inline-block;
  font-size: 14px;
}

.job-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.view-link {
  color: #23559B;
  text-decoration: underline;
  font-weight: 600;
  font-size: 16px;
  text-underline-offset: 4px;
}
.closing-on {
    background-color: #DE24241C;
    color: #000000;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    margin-right: 5px;
}
@media(max-width:767px){
  .tab-buttons{
      flex-direction: row;
      overflow-x: auto;
      white-space: nowrap;
      gap: 30px;
      padding: 0;
  }
  .tab-buttons::-webkit-scrollbar {
      display: none;
  }
  .job-content{
    flex-direction: column;
  }
  .job-actions{
    display: block;
    width: 100%;
  }
}