/* ============================================= Uso Comum ===========================================  */
.cursor {
  cursor: pointer;
}

.bg-card {
  background-color: rgb(238, 238, 238) !important;
}
/* ===================================================================================================  */

/* ================================================== Login ==========================================  */
html,
body {
  margin: 0;
  padding: 0;
}
.login-page2 {
  align-items: center;
  background-color: #e9ecef;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.bgmodal {
  background-color: #e9ecef;
  height: 15px;
}

/* ===================================================================================================  */

/* =============================================== Home ================================================  */
.dropdown-menu-vagas {
  left: -30px !important;
}
/* ===================================================================================================  */

/* =================================== Gerenciamento de Currículos ===================================  */

/*  Utilizado para ter o efeito de uma linha com cor e outra não */
.row-tables:nth-child(2n + 1) {
  background-color: rgb(238, 238, 238) !important;
}
/* ===================================================================================================  */

/* ============================== Tabela de Gerenciamento de Currículos ==============================  */
.table-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#tableManagerCurriculum th.knowledge-col,
#tableManagerCurriculum td.knowledge-col {
  width: 100px !important;
  max-width: 100px !important;
}

#tableManagerCurriculum {
  table-layout: fixed;
  width: 100%;
}

#tableManagerCurriculum td,
#tableManagerCurriculum th {
  word-wrap: break-word;
}

/* ===================================================================================================  */

/* ============================== Modal de Currículos Efeito abrir e fechar card ==============================  */
.card-body-wrapper {
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 1;
}

.card-body-wrapper.collapsed {
  max-height: 0;
  opacity: 0;
  padding: 0;
}

.transition-icon {
  transition: transform 0.5s ease-in-out;
}

.transition-icon.rotated {
  transform: rotate(180deg);
}
/* ===================================================================================================  */
/* ============================== Toglle cadastro de Vaga ==============================  */

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

.custom-switch {
  transform: scale(1.5);
  margin-left: 100px;
}

.custom-control{
  margin-left: 210px;
}


.modal-header {
    border-bottom: none !important;
}

#editJobModal {
    font-size: 1.4rem; /* Ajuste o tamanho conforme necessário */
}

.table-management-jobs {
  max-height: 300px;
  overflow-y: auto;
}

.table-management-jobs table {
  margin-bottom: 0;
}


