@page {
  margin: 0;
}

@media print {
  * {
    background: transparent;
    color: #000000;
    text-shadow: none;
    filter: none;
    -ms-filter: none;
  }

  .print {
    display: block;
  }

  .no-print {
    display: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #e2e2e2;
  position: relative;
  display: flex;
}

header {
  background-color: white;
  height: 100vh;
  width: 250px;
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

header img {
  width: 250px;
  margin-bottom: 50px;
}

h1 {
  font-size: 20px;
  font-weight: bold;
  color: #1a4a73;
  text-align: center;
  margin-bottom: 20px;
}

#search {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
}

.search {
  text-align: center;
}

ul {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.etiqueta {
  width: 105mm;
  height: 70mm;
  padding: 2mm;
  margin: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dotted gray;
}

.cod {
  font-size: 16pt;
  font-weight: 600;
  margin: 50px 0 5px 0;
}

.desc {
  font-size: 10pt;
  font-weight: 400;
}

.hidden {
  display: none;
}

.buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 20px;
}

.btn {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 7px;
  border-radius: 8px;
  background-color: #1a4a73;
  color: white;
  border: none;
  transition: 0.5s;
}

.btn:hover {
  background-color: #66c430;
  transition: 0.2s;
}

.titulo {
  color: #1a4a73;
  font-weight: bold;
}
