@import url("paper1.css");
@import url("paper2.css");
@import url("paper3.css");
@import url("button.css");

:root {
  --generalFontFamily: Calibri, "Trebuchet MS", sans-serif;
  --pageWidth: 21cm;
  --pageHeight: 29.7cm;
  --pagePadLeftRight: 70px;
  --pageBackground: #fff;
  --tcHeaderFontSize: 16px;
  --OMUHeaderFontSize: 16px;
  --SBBAEKHeaderFontSize: 14px; 
  --paragraphFontSize: 13px;
  --logoWidthHeight: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #f0f0f0;
  position: relative;
}

.paper {
  width: var(--pageWidth);
  height: var(--pageHeight);
  padding-left: var(--pagePadLeftRight);
  padding-right: var(--pagePadLeftRight);
  position: relative;
  background: #fff;
  border: 1px solid #d4d4d4;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 120px;
  position: relative;
  padding-top: 5px;
  text-align: center;
}

#headerLogo {
  width: var(--logoWidthHeight);
  height: var(--logoWidthHeight);
  position: absolute;
  left: 0;
}

#headers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.headersH1 {
  font-size: var(--tcHeaderFontSize);
  font-family: var(--generalFontFamily);
}

.headersH2 {
  font-size: var(--SBBAEKHeaderFontSize);
  font-family: var(--generalFontFamily);
}

.headersH2:last-child {
  margin-top: 15px;
}

.pageListedElement {
  padding-left: 20px;
}

.formListedElement {
  padding-left: 40px;
}

textarea {
  resize: none;
  border-right: 1px solid black;
  width: 100%;
}

.checkBoxBorder {
  display: flex;
  align-items: center;
  height: 100%;
  border-left: 1px solid black;
  padding: 2px 8px;
}

.hidden-span {
  visibility: hidden;
  white-space: pre;
  position: absolute;
  font-size: 16px;
  padding: 10px;
}

.blockSpan{
  display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

@media only screen and (max-width: 768px) {
  body {
    width: 1024px;
    margin: 0 auto;
  }
}

input, textarea {
  outline: none;
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  body {
    width: 1024px;
    margin: 0 auto;
  }
}

.pageInfoContainer{
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%);
  font-family: Calibri, 'Trebuchet MS', sans-serif;
  font-size: 14px;
  width: 80%
}

.pageInfoContainer .pageInfo{
  display: flex;
  align-items: center;
  justify-content: space-between;
}