/* Graph styles */
.content__graph {
	width: 80%;
	display: flex;
	position: relative;
	flex-direction: column;
	box-sizing: border-box;
	padding: 4px;
}
.content__graph .tab-parent {
	height: 100px;
    width: 100%;
}
.content__graph .tab-container {
    height: 100px;
	overflow: hidden;
}
.content__graph .tab-container .tab  {
	position: relative;
    height: 100%;
	min-width: 20px;
	max-width: max-content;
	overflow: hidden;
    border: none !important;
    padding: 0;
    background-color: #EEECE3;
	cursor: default !important;
}
.content__graph .tab-container .tab:first-child {
	min-width: 48px;
}
.content__graph .tab-container .tab:first-child span {
	padding: 4px 10px;
}
.content__graph .tab-container .tab:hover {
	background-color: #EEECE3;
}
.content__graph .tab-container .tab span {
	display: block;
    white-space: nowrap;
    height: 100%;
    background-color: #EEECE3;
    border: 1px solid #373539 !important;
    border-radius: 12px 12px 0 0;
    text-align: center;
    padding: 4px;
    font-size: 15px;
	cursor: pointer !important;
	user-select: none;
	direction: rtl;
}
.content__graph .tab-container .tab--selected span {
	background-color: #373539;
	color: #EEECE3;
}
#network-graph {
	width: 100%;
	height: calc(100% - 25px);
    margin-top: -75px;
    border: 1px solid #373539;
    border-radius: 30px;
	box-sizing: border-box;
	overflow: hidden;
}


/* Legend-bar styles */
#legend-bar {
	width: 100%;
	height: 16px;
	border-radius: 5px;
	background: linear-gradient(to right, #440154 0%, #26828E 50%, #FDE725 100%);
}
#legend-labels {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	margin-top: 6px;
}
#color-legend {
	display: none;
	position: absolute;
	z-index: 3;
	left: 20px;
	bottom: 20px;
	width: 300px;
	padding: 10px 10px 6px;
	border-radius: 15px;
	background-color: #373539;
	color: #EEECE3;
}
