@import url("page1.css");
@import url("page2.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 {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.paper {
  width: var(--pageWidth);
  height: var(--pageHeight);
  padding-left: var(--pagePadLeftRight);
  padding-right: var(--pagePadLeftRight);
  position: relative;
  background: #fff;
  border: 1px solid #d4d4d4;

  header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 120px;
    position: relative;
    padding-top: 5px;

    #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: 16px;
        font-family: var(--generalFontFamily);
      }

      .headersH2 {
        font-size: 14px;
        font-family: var(--generalFontFamily);
      }

      .headersH2:last-child {
        margin-top: 15px;
      }
    }
  }
}

.pageListedElement {
  padding-left: 25px;
}

.formListedElement {
  padding-left: 40px;
}

textarea {
  resize: none;
  border-right: 1px solid black;
}

.checkBoxBorder {
  display: flex;
  align-items: center;
  height: 100%;
  border-left: 1px solid black;
  padding: 2px 8px;
} */

@import url("page1.css");
@import url("page2.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%;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.paper {
  width: var(--pageWidth);
  height: var(--pageHeight);
  padding-left: var(--pagePadLeftRight);
  padding-right: var(--pagePadLeftRight);
  position: relative;
  background: var(--pageBackground);
  border: 1px solid #d4d4d4;
  max-width: 100%;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 120px;
  position: relative;
  padding-top: 5px;
  flex-wrap: wrap;
  text-align: center;
}

#headerLogo {
  width: var(--logoWidthHeight);
  height: var(--logoWidthHeight);
  position: absolute;
  left: 10px; /* Mobilde sola hizalama */
}

#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;
}

/* Liste İçeriği */
.pageListedElement {
  padding-left: 25px;
}

.formListedElement {
  padding-left: 40px;
}

/* Form Elemanları */
textarea,
input[type="number"],
input[type="email"] {
  resize: none;
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
}

.checkBoxBorder {
  display: flex;
  align-items: center;
  height: 100%;
  border-left: 1px solid black;
  padding: 2px 8px;
}

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;
  }
}

.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;
}
