body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #1e1e1e;
}

.main-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.top-row, .middle-row {
    display: flex;
    height: 40vh;
}

.middle-frame-brandaris {
    display: flex;
    flex-direction: column;
    height: 50vh;
}

.frame-container-vcgsp {
    position: relative;
    border: 0px solid black;
    overflow: hidden;
}

.frame-container {
    position: relative;
    border: 0px solid black;
}

.top-left-container-vcgsp {
    width: 75%;
    height: 100%;
    overflow: hidden;
}

.middle-left-container-vcgsp {
    width: 25%;
    height: 100%;
    overflow: hidden;
}

.middle-center-container-vcgsp {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.top-right-container-vcgsp, .middle-right-container-vcgsp {
    width: 25%;
    height: 100%;
    overflow: hidden;
}
.bottom-container {
    height: 30vh;
    display: flex; /* Zorgt ervoor dat de frames naast elkaar worden geplaatst */
}

.bottom-left-frame, .bottom-middle-frame, .bottom-right-frame {
    height: 100%;
}

.bottom-left-frame, .bottom-middle-frame, .bottom-right-frame {
    width: 33.33%; /* Verdeel de breedte gelijk */
}

.bottom-container-vcgsp {
    height: 25vh;
}
.bottom-frame-brandaris {
    height: 100%;
}

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

.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: se-resize;
    background-image: url('../img/handle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

:root {
  --resize-handle-light:  url("../img/resize-handle_light.png");
  --resize-handle-dark:   url("../img/resize-handle_dark.png");
}

.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: se-resize;
    background-image: url('../img/handle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
:root {
    --draghandle-light: url("../img/draghandle_light.png");
    --draghandle-dark: url("../img/draghandle_dark.png");
}

.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    cursor: se-resize;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.light-theme .resize-handle {
    background-image: var(--draghandle-light);
}

.dark-theme .resize-handle {
    background-image: var(--draghandle-dark);
}


.link {
    font-size: 12px;
    color: LightGray;
    font-family: RO-Sans, sans-serif !important;
    transition: color 0.2s ease;
    text-decoration: none;
}

.link:hover {
    color: yellow;
    text-decoration: underline;
}

p {
    margin: 3px;
    margin-left: 10px;
    left: 5;
    font-size: 12px;
    color: LightGray;
    font-family: RO-Sans, sans-serif !important;
}
