html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media print {
  @page {
    size: A4 landscape;
    margin: 5mm;
  }
  .MuiDrawer-root {
    display: none !important;
  }
  html {
    height: auto !important;
    overflow: visible !important;
  }
  body {
    height: auto !important;
    overflow: visible !important;
  }
}

.label-top {
  transform: translateY(15px);
}

input[type="date"]::before {
  content: attr(placeholder);
  position: absolute;
  color: #999999;
}

input[type="date"] {
  color: #ffffff;
}

input[type="date"]:focus,
input[type="date"]:valid {
  color: #666666;
}

input[type="date"]:focus::before,
input[type="date"]:valid::before {
  content: "";
}