html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #cbf7ef;
}

/* Контейнер всей страницы */
.page {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Верхняя панель */
.tabs {
  /* background-color: #00bab5; */
  background-color: #072e61;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  flex-wrap: wrap;
  min-height: 70px;
}

.tabs img {
  margin-left: 10px;
  font-size: 16px;
}
.tabs p {
  margin-left: auto;
  font-size: 16px;
}

.tabs button {
  margin-left: 40px;
  padding: 8px 16px;
  background-color: #00a789;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.tabs button:hover {
  background-color: #01886f;
}

/* Контентная часть */
.content {
  flex: 1;
  overflow: auto;
  padding: 10px;
  box-sizing: border-box;
}

#map, #camera-frame {
  width: 100%;
  /* height: 100%; */
  height: calc(100vh - 170px);
}

#link-list {
  display: none;
}

#link-list ul {
  list-style: none;
  padding: 0;
}


#camera-frame iframe {
  width: 100%;
  height: 83%;
  border: none;
}

#flex {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 140px);
}

.container {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 50px 50px;
}

#link-list a {
  padding: 8px 16px;
  background-color: #00a789;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

#link-list a:hover {
  background-color: #01886f;
}
.footer{
  position: fixed;
	height:96px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #072e61;
  color: white;
  display: flex;
  align-items: left;
  justify-content: left;
  text-align: 50px;

}

.tehpod {
  position: absolute;
  left: 10px;
  color:white;
}

/* Медиа-запрос для телефонов */
@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .tabs button {
    margin: 5px 0 0 0;
    width: 100%;
    font-size: 16px;
  }

  #link-list a {
    font-size: 16px;
  }

  #camera-frame iframe {
    width: 100%;
    height: 50%;
    border: none;
  }

  #link-list a {
    padding: 8px 16px;
    background-color: #00a789;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
  }
  .container {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 50px 50px;
  }

  html, body {
    margin: 0;
    padding: 0;
    height: 50%;
    background-color: #cbf7ef;
  }
}
