html, body {
    height: 100%;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}


header {
    
    background-color: #fff;
	height: 22px;
    color: white;
    padding: 0em;
    text-align: right;
    flex-shrink: 0; /* Prevent the header from shrinking */
}

.dropdown {
    position: relative;
    display: inline-block;
	right:120px;

}

.dropbtn {
    /*background-color: #4CAF50;*/

   /* color: black; */
    padding: 2px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    text-align: left;
    display: none;
    position: absolute;
    background-color: #f9f9f9;

    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;

}

.dropdown-content a {
    color: black; 
    /*padding: 12px 16px; */
	padding: 4px 4px 4px 4px;
	/*margin : 2px 2px 2px 2px;*/
    text-decoration: none;
    display: block;

}

.dropdown-content a:hover {
    background-color: #fff 
	color : #FFFFFF; 
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    /*background-color: #3e8e41; */
			background-color: #017335; /*#4CAF50;*/
	color : #FFFFFF; 
}


#dropdown-icon {
  width: 1.3rem;
  height: 1.3rem;
}

main {
    flex: 1; /* Allow the main content to take up remaining space */
    display: flex;
    justify-content: center; /* Center the iframe horizontally */
    align-items: center; /* Center the iframe vertically */
}

iframe {
    width: 100%;
    height: 100%;
}