html,
body {
  height: 100%;
  /*margin: 0 5%;*/
  font-family: Arial, sans-serif;
  text-decoration: none;
  background-attachment: fixed;
}

h1,
p {
  font-family: Arial, sans-serif;
  text-decoration: none;
}

.cabecalho {
  position: relative;
  background-color: #023e7d;
  color: white;
  text-align: center;
  padding: 2%;

  align-items: right;

  font-family: Arial, sans-serif;
  text-decoration: none;
  font-size: 16px;

  top: 0px;
}

.menu {
  position: absolute;
  display: none;
  cursor: pointer;
  top: 5%;
  right: 5%;
  z-index: 999;
}

.menu-itens {
  /*position: absolute;
  bottom: -250px;*/
  position: absolute;
  display: none;
  top: 5%;
  right: 5%;
  z-index: 998;
}

.rodape {
  background-color: #023e7d;
  height: 10%;
  bottom: 0px;
}

.conteudo {
  height: 80%;
  margin: 5%;
}

.seletor {
  display: flex;
  align-items: center;
  justify-content: left;
}

button,
label {
  background-color: #023e7d;
  border: none;
  color: white;
  border-radius: 15px;
  padding: 15px 32px;
  margin: 1%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

input {
  color: #fff;
  font-size: 28px;
  width: 80%;
  padding: 20px 5px 5px;
  background-color: lightgray;
  border: none;
  border-radius: 4px;
}

/*********************** Classe de Exibicao da Lista de Medicamentos *******************************/
.diretorio {
  padding: 10px;
  margin: 5px;
  color: #4ca1af;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer; /* Indica que é clicável */
  transition: background 0.3s;
}

.diretorio:hover {
  background-color: #e0e0e0;
}

/*********************** Classes de Exibicao do EDITOR *******************************/

#pdfContainer {
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;

  width: 70%;
  display: block;
  position: absolute;
  top: 15%;
  left: 25%;
  /*translate: -50%;*/
  margin: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.pdfViewer {
  width: 49%;
  height: 500px;
  border: 1px solid #ccc;
  display: flex;
  align-items: top;
  justify-content: center;
}

.janela {
  width: 49%;
  height: 500px;
  border: 1px solid #ccc;
  display: flex;
  align-items: top;
  justify-content: center;

  padding: 10px; /* Espaçamento interno */
  overflow: auto; /* Permite rolagem se necessário */
  white-space: pre-wrap; /* Mantém quebras de linha e ajusta ao contêiner */
}

canvas {
  max-width: 100%;
  max-height: 100%;
}

#qrcode {
  margin: 5%;
  background-color: white;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #ddd;
  background-color: white;
  color: #023e7d;
  z-index: 1000;
  max-height: 150px;
  overflow-y: auto;
}
.dropdown-content div {
  padding: 8px;
  cursor: pointer;
}
.dropdown-content div:hover {
  background-color: #f1f1f1;
}
