.hidden{
    display: none;
}

.footer {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color:#fff;
}


.sortable {
      cursor: pointer;
    }
    .search-bar {
      margin-bottom: 15px;
    }
    .pagination {
      display: flex;
      justify-content: center;
      margin-top: 15px;
    }
    .pagination a {
      margin: 0 5px;
      padding: 5px 10px;
      border: 1px solid #ddd;
      text-decoration: none;
      color: #007bff;
    }
    .pagination a.active {
      background-color: #007bff;
      color: white;
      border: 1px solid #007bff;
    }

/*Albergados */

.fotoPerfil{
    max-width: 40px;
    height: 40px;
    border-radius: 100%;
    object-fit: cover;
}

#profileImageContainer {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}
#profileImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#profileImageContainerParente {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}
#profileImageParente {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


#captureButtonParente, #uploadButtonParente {
    margin-top: 10px;
}

#captureButton, #uploadButton {
  margin-top: 10px;
}


.document-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .document-icon {
    font-size: 24px;
    margin-right: 10px;
  }
  
  .document-name {
    flex-grow: 1;
  }
  
  .remove-btn {
    background: rgb(233, 75, 75);
    color: white;
    border: none;
    border-radius: 100%;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  #uploadButton {
    /* Esconde o texto do input de arquivos */
    opacity: 0;
    position: absolute;
    z-index: -1;
  }
  
  #uploadButton + label {
    /* Estiliza o botão de upload para parecer um botão normal */
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
  }
  
  #uploadButton:focus + label {
    /* Adiciona uma borda ao botão quando ele está em foco */
    outline: 2px solid #0056b3;
  }

  #uploadButtonParente {
    /* Esconde o texto do input de arquivos */
    opacity: 0;
    position: absolute;
    z-index: -1;
  }
  
  #uploadButtonParente + label {
    /* Estiliza o botão de upload para parecer um botão normal */
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
  }
  
  #uploadButtonParente:focus + label {
    /* Adiciona uma borda ao botão quando ele está em foco */
    outline: 2px solid #0056b3;
  }
  
  
  