@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


body {
    background-color: rgb(243, 243, 243);
    display: flex;
    flex-direction: row;
    height: 100%;
    z-index: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    gap: 10px;
    overflow: hidden;
}

main {
    width: 100% !important;
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    margin-left: 1%;
    gap: 15px;
    background-color: rgb(243, 243, 243);
}

.colaboradores-list {
    width: 95% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-left: 35px;
    -webkit-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
}

.titulo {
    background: white;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 95%;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
}

.guia {
    padding-left: 35px;
    padding-top: 0;
    padding-bottom: 0;
}

.pattern {
   font-size: 15px;
   font-weight: 600;
   display: flex;
   line-height: 100%;
   text-align: center;
   align-items: center;
   padding: 5px;
   padding-bottom: 30px;
}


.fi.fi-sr-info {
    transform: translate(-5%, 5%) !important;
    padding-right: 5px;
    font-size: 15px;
    color: orange;
}

.fi.fi-sr-redo {
    padding-right: 5px;
    font-size: 15px;
    text-align: center;
    transform: translate(-7%, 50%);
    color: #333;
}

#listaColaboradores {
    margin-top: 10px !important;
    transition: 0.5s ease-in-out;
}

#listaColaboradores :hover {
    background-color: #8029e4;
    color: white;
    cursor: pointer;
    transition: 0.5s ease-in-out;
  }

.colaboradores-list {
    width: 60%;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    background-color: white;
    border-radius: 20px;
    /* padding: 20px;
    -webkit-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
    margin-left: 10px; */
}

.colaboradores-table {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.colaborador-item {
    margin-bottom: 10px;
    padding: 10px;
    background-color: white;
}


/* Estilo para a div que representa cada colaborador */
.line {
    background-color: #2ad4ff;
    width: 100%;
    height: 7%;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.21);
  }

  .line p {
    font-weight: 500;
    line-height: 100%;
    margin: 0;
    padding: 5px;
    width: 100px;
    background-color: transparent !important;
  }


  .icon-user {
    margin-right: 1px; /* Espaçamento à direita para separar o ícone do texto */
  }

.fi.fi-sr-user {
    font-size: 20px;
    transform: translate(-5%, 5%);
}

/* Aqui é sobre o modal  */
/* Estilização para o modal */
.modal-content {
    border-radius: 20px;
}

.modal-header {
    background-color: #2ad4ff;
    color: #07379e;
    font-weight: 600;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.modal-title {
    text-align: center;
    width: 100%;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    background-color: #f8f9fa;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Estilização para os campos de detalhes do colaborador */
.modal-body p {
    margin-bottom: 10px;
}

.modal-body strong {
    font-weight: bold;
}

/* Botão "Fechar" no rodapé do modal */
.modal-footer .btn-secondary {
    border: none;
    background-color: #2ad4ff;
    color: #07379e;
    font-weight: bold;
    transition: 0.5s ease-in-out;
}

.modal-footer .btn-secondary:hover {
    background-color: #07379e;
    transition: 0.5s ease-in-out;
}
/* Aqui é sobre o modal  */
