    body{
        font-size: 16px;
    }
    
    #header, .headerBackground, .angleDiv, .blackBox, .logo{
        height:100px;
    }

    .headerBackground, .logo {
        /*color green*/
        background-color: #3FB498;
    }

    .sidenav, .angleDiv, .blackBox {
        /*color antraciet*/
        background-color: #282828;
    }

    body, #MainMenuFunctionButton {
        /* color white */
        background-color: #F8F8F8;
    }

    #container{
        /* margin-top:200px; */
        height:100%;
    }

    .dropbtn {
        cursor: pointer;
    }
      
    .dropdown {
        position: relative;
    }
      
    .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background-color: #f9f9f9;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
      
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
      
    .dropdown:hover .dropdown-content {
        display: block;
    }
      
    /* .dropdown:hover .dropbtn {
        background-color: #3e8e41;
    } */

    .sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        overflow-x: hidden;
        transition: 0.75s;
        padding-top: 60px;
    }
      
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #818181;
        display: block;
        transition: 0.3s;
    }
      
    .sidenav a:hover {
        color: #f1f1f1;
    }
      
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }
      
    #main {
        transition: margin-left .5s;
        padding: 16px;
    }
      
    @media screen and (max-height: 450px) {
        .sidenav {padding-top: 15px;}
        .sidenav a {font-size: 18px;}
      }

    .headerBackground {
        position:absolute;
        left:25%;
        width: 75%;
    }

    .angleDiv {
        position:absolute;
        width: 150px;
        right:70px;
        transform: skewX(20deg);
    }

    .blackBox {
        position:absolute;
        right:0%;
        width: 200px;
        text-align: center;
        color:#F8F8F8;
    }

    .logo {
        position:absolute;
        left:0%;
        width:25%;
        /* border-style: solid; */
    }

    #bedrijf{
        height: calc(100% - 20px);
        overflow: auto;
    }

    button{
        width:100%;
        /* height:12.5%; */
        height: 60px;
        background-color: #f5f5f5;
    }

    button:hover, button:active {
        background-color: #3FB498;
    }

    #mainPanel{
        height:100%;
        margin:15px;
    }

    #MainMenuFunctionButton{
        width:22%; 
        height:200px; 
        border-radius:15px 15px; 
        display:inline-block; 
        margin:10px; 
        color:black;
        border-color:#F8F8F8;
        transition: background-color 0.5s, transform .2s;
    }

    #MainMenuFunctionButton:hover{
        background-color: #3FB498;
        transform: scale(1.05); 
    }

    .timeText, .aanwezigheidText{
        position:absolute; 
        font-size:16; 
    }

    .aanwezigheidText{
        color:#999999;
    }

    .accountContainer{
        width:40%; 
        padding:15px; 
        background-color:#3FB498; 
        border-radius:15px 15px;
    }

    .inputText{
        padding-top:6px;
    }

    .loginBorder{
        width:25%; 
        height:600px; 
        margin: auto; 
        padding:15px; 
        background-color:#3FB498; 
        border-radius:15px 15px;
    }

    .innerContent{
        height:100%; 
        background-color: white; 
        padding:15px 15px 70px 15px; 
        border-radius:5px 5px;
    }

    /* Popup container - can be anything you want */
    .popup {
        position:fixed; bottom:10px; right:10px;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
      
    .hide {
        width:200px;
        display: block;
    }
        
    .myDIV:hover + .hide {
        display: block;
        color: red;
    }
      
      
      /* The actual popup */
    .popup .popuptext {
        visibility: hidden;
        width: fit-content;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 8px 0;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 0%;
        margin-left: -60px;
    }
      
      /* Popup arrow */
      .popup .popuptext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 80%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
      }
      
      /* Toggle this class - hide and show the popup */
      .popup .show {
        visibility: visible;
        -webkit-animation: fadeIn 1s;
        animation: fadeIn 1s;
      }
      
      /* Add animation (fade in the popup) */
      @-webkit-keyframes fadeIn {
        from {opacity: 0;} 
        to {opacity: 1;}
      }
      
      @keyframes fadeIn {
        from {opacity: 0;}
        to {opacity:1 ;}
      }

      @media only screen and (max-width: 600px) {
        #TestText{
            visibility: hidden;
        }

        .angleDiv {
            /* width: 100px; */
            right: 30px;
        }

        .blackBox {
            width: 160px;
        }

        .menuButton{
            display: none;
        }

        #MainMenuFunctionButton{
            width:100%; 
        }

        .timeText, .aanwezigheidText{
            /* display: none; */
            font-size: 10; 
            white-space: nowrap;
            overflow: hidden;
            max-width: 30px;
        }

        .loginBorder{
            width: 75%; 
        }

        .accountContainer{
            width:100%; 
        }

        .navTab{
            white-space: nowrap;
            overflow: hidden;
            max-width: 200px;
        }
      }

    
    