body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: white;
/*  overflow: hidden;*/
  font-family: Graphik, Sans-serif;
}

.expand-button {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  padding: 5px;
  border: none;
  font-size: 20px;
  cursor: pointer;
  right: 20px;
  bottom: 40px;
  position: absolute;
  color: white;
  font-family: karla, Sans-serif;
  background-color: #65BC45;
  z-index: 9999;
  position: fixed;
}

.page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 100vh;
  height: 100%;
}

.page-content {
  width: 100%;
  height: 100%;
}

iframe.overlay {
  right: 0;
  bottom: 0;
  width: 0%;
  height: calc(100% - 210px); /* replace 131px with the height from the top of the page to the bottom of the navigation bar*/
  z-index: 8888;
  position: fixed;
}

iframe.overlay.expand {
  width: 30%;
}    

.navbar {
  display: flex;
  background-color: #e0e0e0;
  padding: 10px;
  justify-content: space-around;
}

.navbar button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.navbar button:hover {
  background-color: #ccc;
}

.container {
  display: flex;
  flex-direction: row;
  padding: 20px;
}

.sidebar {
  flex: 1;
  max-width: 200px;
  padding: 10px;
  background-color: #f7f7f7;
  border-right: 1px solid #ccc;
}

.sidebar img {
  width: 100px;
  display: block;
  margin: 0 auto 20px;
}

.sidebar p {
  text-align: center;
  margin: 10px 0;
}

.content {
  flex: 3;
  padding: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-item {
  background-color: #4CAF50;
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  width: 150px;
}

.grid-item:hover {
  background-color: #45a049;
}

#appHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  height: 51px;
}

#appHeader img {
  height: 45px;
}

#appHeader .title {
  font-size: 24px;
  color: #333;
}

#appHeader .user-info {
  display: flex;
  align-items: center;
}

#appHeader .user-info select,
#appHeader .user-info a {
  margin-left: 15px;
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
}

#appHeader .user-info a:hover {
  text-decoration: underline;
}
