td.avatar {width:100px}
td.avatar img {width:65px}

.w25p {
  width: 25%;
}

@media print {
  @page {
    margin: 2cm;
  }
  body {
    margin: 0;
    color: #000;
    background-color: #fff;
  }
  header, footer, aside, nav, form, iframe, button, .btn {
    display: none;
  }
  #prt-brk-pnt {
    page-break-before: always;
    break-before: always;
  }
}

.modal-overlay-custom {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Estilo do modal */
.modal-custom {
  background: #fff;
  padding: 20px;
  width: 400px;
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: relative;
}

/* Botão de fechar */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
}

/* Botão abrir modal */
.open-modal-btn {
  padding: 10px 20px;
  background-color: #007bff;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.open-modal-btn:hover {
  background-color: #0056b3;
}