html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*position: fixed;*/
	position: relative;
    cursor: default;
    width: 100%;
    height: 100%;
	background-color: black;
}

h4 {
	margin: 0px;	
}
#myLogo {
		position: absolute;
		z-index: 2;
		top: 5px;
		right: 5px;
		max-width: 10%;
		height: auto;
		border-radius: 10px;
	}
	
.Toolbar {
	display: none;
	position: absolute;
	z-index: 2;
	padding: 5px 15px;
	border-radius: 10px;
	border: 1px solid black;
	background-color: rgba(255, 255, 255, 0.7);
}
	
#HotspotToolbar {	
	left:150px;
	top:100px;	
	width: auto;
	height: auto;
	}
	
#Toolbar_SaveAs {	
	left:150px;
	top:100px;	
	width: auto;
	height: auto;
	}

#Toolbar_EditLogo {	
	left:150px;
	top:100px;	
	width: auto;
	height: auto;
	}
	
/* Styling for contextmenu*/
.contextmenu {
	z-index: 3;
    position: absolute;
    width: 150px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);	
    padding: 0px;
    border-radius: 10px;
    display: none; /* Initially hidden, shown on right-click */
}

/* Styling for each menu item */
.contextmenu .menu-item {
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/* Hover effect for each menu item */
.contextmenu .menu-item:hover {
    background-color: #0078d4; /* Highlight color */
    color: #fff; /* Text color on highlight */
    border-radius: 10px;
}