/* ===== Determine Screen Size ===== */

@media only screen and (max-width: 660px) {
  body {
    zoom: 1;
  }

  .window {
    margin: auto auto;
    width: 100%;
    height: 100%;
  }

  .menubar, .status-bar {
    height: 0;
    visibility: hidden;
  }

  .pccom-body {
    height: 93vh;
  }
}

@media only screen and (min-width: 660px) {
  body {
    zoom: 1;
  }

  .window {
    margin: 30px auto;
    width: 640px;
  }

  .pccom-body {
    height: 480px;
  }
}

@media only screen and (min-width: 1000px) {
  body {
    zoom: 1.25;
  }
}

/* ================================= */

body {
  background-color: #007c7c;
}

.title-bar, .window, button, input, label, legend, li[role="tab"], option, select, table, textarea, ul.tree-view {
  font-family: gulim,sans-serif;
  font-size: 12px;
}

title-bar-text {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* 오너캐 소개용 워드패드 */
.oc-body {
  margin: 0;
  padding: 3px;
  background-color: white;
  color: black;
  font-size: 16px;
  overflow-y: scroll;
  box-shadow: inset -1px -1px #fff,inset 1px 1px grey,inset -2px -2px #dfdfdf,inset 2px 2px #0a0a0a;
  display: block;
  height: 500px;
}
