html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  min-width: 100vw;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  padding: 0;
  line-height: 1.5;
}

.font-eng {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI,
    Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

.outer-grid {
  display: grid;
  height: 100vh;
  gap: 0.5rem;
  padding: 0.5rem;
}

.tile {
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 0.25rem;
  position: relative;
}

.tile .tile-content-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

/* Video Screen */
.video {
  width: 100vw;
  height: 100vh;
}

/* Temperature */
#tempCard {
  display: none;
}

/* Employee */
.employee-image {
  position: relative;
  width: 100%;
}

.employee-image::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.employee-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}
