.avatar-container {
  position: relative;
margin-left: auto;
margin-right: 10px;
  width: 50px;
  height: 50px;
}

.avatar-container img {
  position: absolute;
  width: 100%;
  height: auto;
}

.body { z-index: 2; }
.head { z-index: 3; }

.option-img {
  width: 50px;
  height: auto;
  cursor: pointer;
  margin: 5px;
  border: 2px solid transparent;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + .option-img {
  border-color: blue;
}#menu-toggle {
	display: none;
}
.menu-icon {
	font-size: 24px;
	cursor: pointer;
}
.dropdown {
	z-index:4;
	position: absolute;
	top: 50px;
	right: 10px;
	background-color: #282828;
	border: 1px solid #665c54;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	overflow: hidden;
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown a {
	display: block;
	padding: 10px 15px;
	color: #928374;
	text-decoration: none;
}
.dropdown a:hover {
	background-color: #3c3836;
}
#menu-toggle:checked + .dropdown {
	opacity: 1;
	transform: scaleY(1);
}

.header {
	position: sticky;
	top: 0;
	background-color: #3c3836;
	color: #928374;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
}
.container{
	overflow: auto;
	display:flex;
	align-items: center;
	justify-content: center;
}
.image{
	margin-right:17%;
	float: right;
	width: 120px;
	height: auto;
}
.rightTable{
	margin-bottom:10px;
	margin-right:15%;
	float: right;
}
.table1{
	border: 1px solid #665c54 ;
}
.tableImage{
	width: 65px;
	height: auto;
}
table{
	border-collapse: collapse;
}
th,td{
	padding: 7px;
	border: 1px solid #665c54;
}
select option {
	background-color: #282828;
	color: #928374;
}
select:hover, select:focus {
	background-color: #665c54;
	color: #98971a;
}
select{
	appearance: none;
	background-color: #504945;
	color: #98971a;
	border: 1px solid #32302f;
	margin-top: 10px;
	padding: 5px;
	font-size: 16px;
	border-radius: 5px;
}
input:hover{
	background-color: #665c54;
	color: #98971a
}
button:hover{
	background-color: #665c54;
	color: #98971a
}
button{
	appearance: none;
	background-color: #504945;
	color: #98971a;
	border: 1px solid #32302f;
	margin-top: 10px;
	margin-left: 15px;
	padding: 5px;
	font-size: 16px;
	border-radius: 5px;
}
input{
	appearance: none;
	background-color: #504945;
	color: #98971a;
	border: 1px solid #32302f;
	margin-top: 10px;
	margin-left: 15px;
	padding: 5px;
	font-size: 16px;
	border-radius: 5px;
}
.text3{
	margin-bottom:10px;
	margin-left:13%;
	padding-right:13%;
	float: left;
}
.text2{
	margin-bottom:10px;
	margin-left:13%;
	padding-right:150px;
	float: left;
}
.outer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  padding: 10px;
}
.outer.minimal .inner {
  border: none;
  background-color: transparent;
  padding-left: 35px;
}

.inner {
  background-color: #252320;
  border: 1px solid #665c54;
  border-radius: 10px;
  padding: 10px 15px;
  width: 250px;
  box-sizing: border-box;
  flex-grow: 1;
  flex-shrink: 0;
  color: #928374;
  font-size: 14px;
}

.inner h4 {
  color: #98971a;
  margin: 0 0 8px 0;
  text-align: left;
}

.inner p, .inner li {
  text-align: left;
  margin: 4px 0;
}

.inner ul {
  padding-left: 20px;
  margin: 0 0 10px 0;
}
.graph-container {
  display: flex;
  flex-direction: column;  /* Stack the graphs vertically */
  gap: 16px;  /* Space between individual graph boxes */
}

/* Style for individual graph boxes */
.graph-box {
  background-color: #252320;
  border: 1px solid #665c54;
  border-radius: 12px;
  padding: 10px;
  width: 100%;
  max-width: 600px;  /* Maximum width to prevent images from becoming too large */
  box-sizing: border-box;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.graph-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.text{
	margin-bottom:10px;
	margin-left:13%;
	padding-right:100px;
	float: left;
}
.form-container {
	display: flex;
	flex-direction: column;
	gap: 10px; /* Optional, for spacing between the items */
}
a {
	color: #98971a;
}
a:hover {
	color: #b8bb26;   	
}
a:visited {
	color: #98971a;  	  
}
a:active {
	color: #b8bb26;   /* Active state */
}
