/* checkin.css */
    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
    }

    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 15px;
      background-color: white;
      border-bottom: 1px solid #ccc;
      z-index: 1000;
    }

    .topbar a {
      color: #004466;
      font-weight: bold;
      text-decoration: none;
    }

    .topbar .description {
      flex: 1;
      text-align: center;
      font-weight: bold;
      color: #333;
    }

    .topbar img.logo {
      height: 40px;
      max-width: 120px;
      object-fit: contain;
    }

    .wrapper {
      width: 100%;
      height: 100vh; /* Full viewport height */
      position: relative;
      z-index: 1;
    }
	
	.hidelogo {
      position: absolute;
      width: 100%;
      height: 30px;
      background: #FFF;
      right: 0;
      bottom: 0;
      z-index: 999;
      display: block;
    }

    iframe {
      width: 100%;
      height: calc(100vh - 38px); /* topbar height */
      border: none;
    }
	
	@media (max-width: 767px) {
	  iframe {
       height: calc(100vh - 150px); /* leave space for bottom button visibility */
      }
    }
	
	iframe {
    overflow-y: auto !important;
}