.menu-option-with-submenu {
      position: relative;
    }

    .submenu {
	display: none;
	position: absolute;
	top: 100%; /* Position below the button */
	left: -135px; /* Offset to the left */
	background-color: #000099; /* Adjust the background color as needed */
	border-radius: 0.5rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	z-index: 1;
    }
	
	.menu-option-with-submenu:hover .submenu {
      display: block;
    }

    .submenu-option {
	display: block;
	padding: 10px;
	color: #FFFFFF;
	background-color:#000000;
	transition: background-color 0.3s ease;
    }

    .submenu-option:hover {
	background-color: #000000; /* Adjust the background color on hover as needed */
	color:#FFFFCC;				/*Removed INHERETED PROPERTY above to be able to set text color here */
    }@charset "utf-8";
	
	
/* CSS Document */

