body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
  }

  .drawer {
    position: fixed;
    top: 0;
    height: 100vh;
    width : 430px;
    background-color: #f1f1f1;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
  }

  .drawer.left {
    left: 0;
    transform: translateX(-100%);
  }

  .drawer.right {
    right: 0;
    transform: translateX(100%);
  }

  .drawer.open {
    transform: translateX(0);
  }

  .content {
    padding: 20px;
  }

  .button-container {
    position: fixed;
    top: 4px;
    padding: 0px;
    transition: transform 0.3s ease-in-out;
  }

  .button-container.left {
    left: 430px;
    transform: translateX(-430px);
  }

  .button-container.right {
    right: 430px;
    transform: translateX(430px);
  }

  .button-container.open {
    transform: translateX(0);
  }

  iframe{
      width:100%;
      height: 100%;
  }

  .app{
      width: 390px;
      height: 844px;
  }

  .dashboard{
      width: 100%;
      height: 100%;
      margin: 0;
      transition: width 0.3s ease-in-out, margin 0.3s ease-in-out;
  }

  .dashboard.left-open {
    width: calc(100% - 430px);
    margin-left: 430px;
  }

  .dashboard.right-open {
    width: calc(100% - 430px);
    margin-right: 430px;
  }

  .dashboard.both-open {
    width: calc(100% - 860px);
  }