.bl-inscrito{
    border-left: #FB8500 3px solid;
}
.bl-inscrito_prof{
    border-left: #4B9EFF 3px solid;
}
.bl-nao-inscrito{
    border-left: #D6DCE0 3px solid;
}
.timeline-container {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
}


.custom-timeline {
    display: inline-flex;
    padding: 0;
    list-style-type: none;
}

.custom-status {
    padding: 0 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 2px solid #D6DCE0;
    border-radius: 8px;
}

.custom-status h6 {
    font-weight: 600;
    margin-top: 10px;
}

.li.complete .custom-status {
    border-top: 2px solid #FB8500;
}

.li.complete .custom-status h6 {
    color: #FB8500;
}

.li.complete-prof .custom-status {
    border-top: 2px solid #4B9EFF; /* Nova borda para profissionais */
}

.li.complete-prof .custom-status h6 {
    color: #4B9EFF; /* Cor para o texto dos profissionais */
}

.li.complete .custom-status .prof h6 {
    color: #4B9EFF;
}

.candidates-list {
    margin-top: 10px;
    min-height: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.circle {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.orange {
    background-color: orange;
}
.gray {
    background-color: gray;
}

.candidate-item li {
    border-bottom: #D6DCE0 1px solid;
    list-style-type: none;
}

.candidate-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

.candidate-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .custom-timeline {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
    }

    .custom-status {
        padding: 0 20px;
    }

    .custom-status h6 {
        font-size: 14px;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .custom-status {
        padding: 0 10px; 
    }
}

.vaga-detalhes {
    font-family: Arial, sans-serif;
  }
  
  .vaga-detalhes h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .vaga-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
  }
  
  .vaga-info h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
  }
  
  .vaga-info p {
    font-size: 1rem;
    color: #333;
    margin: 0;
  }
  
  .vaga-info .line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 10px 0;
  }
  
  .vaga-detalhes .text-right {
    text-align: right;
  }
  
  .vaga-info .col-6 {
    width: 48%;
  }
  
  .vaga-detalhes {
      display: flex;
      flex-wrap: wrap;
      gap: 15px; /* Espaçamento entre os blocos */
  }
  
  .vaga-info {
      background-color: #f8f9fa; /* Cinza muito claro */
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 15px;
      flex: 1 1 calc(50% - 15px); /* Ocupa 50% do espaço com margem */
  }
  
  .vaga-info p {
      margin: 0;
  }
  
  @media (max-width: 768px) {
      .vaga-info {
          flex: 1 1 100%; /* Em telas menores, ocupa 100% */
      }
  }