body {
  font-family: var(--font-family);
  background-color: var(--body-bg-color);
}

.main-body {
  height: 100vh;
  display: flex;
}

.main-content-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow-y:hidden;
}

.main-header {
  display: flex;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}

.main-content {
  display: flex;
  overflow-y: auto;
  flex: 1;
  position: relative;
  margin-bottom: 2rem;
}

.main-footer {
  z-index: 10;
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 35px;
  padding: 10px;
  background-color: var(--primary-color);
  border-top: 1px solid rgba(159, 159, 159, 0.9);
}

@media print {
  .main-content, .main-content-wrapper {
    overflow: visible;
  }

  .main-content-wrapper {
    width: 100%;
  }
}
