body {
	height: 100%;
	background-image: url("background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #020A1B;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.profile-banner { 
	display: flex;
	height: 10%;
	width: 100%;
	background-color: #dedede;
	border-radius: 40px;
	border-style: outset;
	border-width: 2px;
	border-color: #d9d9d9;
	box-shadow: -5px 5px #909090;
	justify-content: center;
	align-items: center;
}
.profile-banner-left { 
	display: flex;
	justify-content: flex-start;
	width: 50%;
	height: 100%;
	padding: 0px 40px;
	align-items: center;	
}
.profile-banner-left img {height: 80%;}

.profile-banner-center {
	font-weight: bold;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.profile-banner-right { 
	display: flex;	
	justify-content: flex-end;
	width: 50%;
	height: 100%;
	padding: 0px 40px;
	align-items: center;	
}
.profile-container{
	position: relative;
	display: inline-block;
}
.profile-pic {
	width: 80px;
	height: 80px;
	cursor: pointer;
}

.dropdown {
	display: none;
	position: absolute;
	top: 50px;
	right: 0;
	background: white;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15)
}
.dropdown a {
	display: block;
	padding: 6px 0;
	text-decoration: none;
	color: black;
}
.dropdown a:hover {
	background:#eee;

}
.add-entry-button {
	background-color: #4caf50;
	color: white;
	height: 50%;
	width: 20%;
	font-weight: bold;
	font-size-adjust: .7;
	padding: 10px;
	border-radius: 30px;
}

.graphs-box { 
	display: flex;
	background-color: rgba(255, 255, 255, .8);
	align-items: stretch;
	flex-direction: column;
	justify-content: center;
	height: auto;
	width: 70%;
	margin: 40px;
	padding: 20px;
	border-style: inset;
	border-width: 7px;
	border-color: rgba(2, 10, 27, 0.7);
	border-radius: 60px;
}
.graphs-box-inline {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 70px;
	align-items: center;
	justify-content: center;
}
.graph-box div {
	margin: 20px;
}
.graphs-box-label{
	width: 98%;
	text-align: center;
	font-weight: bold;
	align-items: center;
	justify-content: center;
	box-shadow: 0px -3px #adadad;
	margin: 20px;
}
.graph {
	border-radius: 20px;
	overflow: hidden;
}

.crewai-banner { 
	display: flex;
	height: 15%;
	width: 100%;
	background-color: #dedede;
	border-radius: 40px;
	border-style: outset;
	border-width: 2px;
	box-shadow: -5px 5px #909090; 
	align-items: center;
}
.crewai-banner-left {
	height: 100%;
	width: 15%;
	display: flex;
	justify-content: center;
}

.crewai-banner-image{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	padding: 10px;
}
.crewai-banner-image img {height: 120px; width: 120px; margin: 0px 40%;}

.crewai-banner-message {
	width: 80%;
	height: 70%;
	justify-content: center;
	text-align: center;
	background-color: white;
	border-radius: 30px;
}

