* {
    box-sizing: border-box;
}
body {
    margin: 0;
    height: 100vh;
}
.content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-items: center;
    align-items: center;
}

.split {
    display: flex;
    width: 100%;
    height: 100%;
    /* border-left: 1px solid #bbb; */
}

.split-b0 {
    /* LFV */
    display: flex;
    flex-direction: column;
    min-width: 300px;
    width: 300px;
    height: 100%;
    border: none;
    box-sizing: border-box;
}

.gutter {
    /* width: 6px !important; */
    width: 1px !important;
    cursor: ew-resize;
    height: 100%;
    background: #d0d0d0;
    border-left: 1px solid #aaaaaa;
    border-right: 1px solid black;
}

.gutter-vertical {
    display: none;
}

.mr-2 {
    margin-right: 2rem;
}

.current-language {
    cursor: pointer;
    cursor: hand;
    color: blue;
    font-size: 1em;
}

iframe {
    border-width: 0px;
}

.main-frame {
  width: 100%;
  height: 100vh;
  border: none;
  display: block;
}


/* Gör iframe smidigare på små skärmar */
@media (max-width: 600px) {
  .main-frame {
    height: 97vh; /* Lite mindre höjd på väldigt små skärmar */
  }
}
