body {
	margin: 0;
	font-family: Verdana, Sans-serif;	
}

.navbar { 
	background-color: #0E3386;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header {
	display: block;
	color: white;
	text-align: center;
	padding-left: 30px;
}

@media only screen and (max-width: 1500px) {
	.header {
		display: none;
	}
}

@media only screen and (max-width: 1250px) {
	.navbar {
		flex-direction: column;
		align-items: center;
	}
	.navbar-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		margin: 0 auto;
		box-sizing: border-box;
		padding: 1rem;
	}
	.dropdown {
		flex-direction: column;
		align-items: center;
	}

	.containers-label {
		visibility: hidden;
	}
}

@media only screen and (max-width: 1015px) { 
	#maxHover {
		display: none;
               	right: 5px;
        	top: 25px;
	}

	#meanHover {
        	display: none;
        	right: 5px;
        	top: 25px;
	}

	#minHover {
       		display: none;
       		right: 5px;
        	top: 25px;
	}
}

.navbar-inner {
        margin-left: auto;	
  	background-color: white;
	border-radius: 8px;
	padding: 12px 16px;
	display: flex;
	gap: 12px;
	align-items: center;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar a,
.navbar button { 
	color: white;
	background: none;
	border: none;
	padding: 10px 15px;
	text-decoration: none;
	cursor: pointer;
}

.dropdown { 
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.dropdown label {
	font-size: 13px;
	color: #666;
	margin-left: 2px;
}

input[type="date"] { 
	appearance: none;
  	-webkit-appearance: none;
  	background-color: #2e5eaa;
  	color: white;
  	padding: 10px 15px;
  	border: 1px solid #ccc;
  	border-radius: 6px;
  	font-size: 14px;
  	font-family: Verdana, sans-serif;
  	cursor: pointer;
  	position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {  
	filter: invert(1);
	cursor: pointer;
}

select {
	appearance: none; 
       	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #2e5eaa;
	color: white;
	padding: 10px 40px 10px 15px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	font-family: Verdana, sans-serif;
      	background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="30" viewBox="0 0 24 24" width="30" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 14px;
	cursor: pointer;
}

select:focus {
	outline: none;
	border-color: #0E3386;
}

#max { 
	width: 95%;
	height: 500px;
	padding: 40px;
	justify-content: center;
}

#mean {
        width: 95%;
        height: 500px;
        padding: 40px;
        justify-content: center;
}

#min {
        width: 95%;
        height: 500px;
        padding: 40px;
        justify-content: center;
}

#pageTitle {
	font-size: 27px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
        font-weight: bold;	
}

#graphs { 
	position: relative;
}

.action {
    position: relative;
}

.dropbtn {
    background-color: #0F4D96;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: 20px;
}

.dd_content {
	display: none;
	position: absolute;
	background-color: white;
	min-width: 200px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	top: 100%;
	left: 20px;
	border-radius: 5px;
}

.dd_content.show {
	display: block;
}

.dd_content button,
.submenu_btn {
    padding: 12px 16px;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
}

.dd_content button:hover, 
.submenu_btn:hover {
    background-color: #f1f1f1;
}

.submenu_content {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	background: white;
	min-width: 180px;
	box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
	border-radius: 5px;
	z-index: 1001;
}

.submenu:hover .submenu_content {
	display: block;
}

.dropbtn:hover {
    background-color: #007bb5;
}

.hovertext {
	opacity: 0.0;
}

#big_SS,
#middle_SS,
#small_SS {
	position: relative;
}

#maxHover {
	display: none;
	right: 20px;
        top: 100px;
}

#meanHover { 
	display: none;
	right: 20px;
        top: 100px;
}

#minHover { 
	display: none;
        right: 20px;
        top: 100px;
}

.hovertool {
	position: absolute;
	width: 150px;
	padding: 16px;

	background: white;
	border: 2px solid #ccc;
	border-radius: 8px;

	box-shadow: 0 2px 10px rgba(0,0,0,0.15);

	font-size: 14px;
	line-height: 1.5;

	z-index: 1000;
}
body, html {
  overflow-x: hidden;
}



