.menu-checkbox { display: none; }

.menu-icon {
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 20px;
	left: 20px;
	cursor: pointer;
	z-index: 310;
}
.menu-icon span {
	position: absolute;
	width: 24px;
	height: 4px;
	background-color: #e0e0e0;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-icon span:nth-child(1) { transform: translateY(-8px); }
.menu-icon span:nth-child(2) { opacity: 1; }
.menu-icon span:nth-child(3) { transform: translateY(8px); }

.menu-checkbox:checked + .menu-icon {
	display: none;
}

.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 500px;
	height: 100%;
	background: #000000;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	z-index: 300;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	overflow-x: hidden;
}
.menu-checkbox:checked ~ .menu {
	transform: translateX(0);
}

.menu-close-button {
	position: sticky;
	top: 20px;
	margin-left: auto;
	margin-right: 20px;
	width: 40px;
	height: 40px;
	background-color: #000;
	border-radius: 50%;
	color: #fff;
	font-size: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 320;
	font-size: 3em;
}


.menu-top-section {
	width: 100%;
	background-color: #000;
	padding: 0px 0 20px 0;
	background-image: radial-gradient(circle at center 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}
.menu-medium-section {
	height: 32%;
	width: 100%;
	background-color: #263238;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.menu-bottom-section {
	width: 100%;
	background-color: #000000;
	padding: 30px 0 60px 0;
	text-align: center;
}
.menu-message-counter {
	font-size: 14px;
	margin-bottom:0px;
	color: #B2B6B8;
}
.user-link {
	color: #FFFFFF;
	font-size: 21px;
	font-weight: bold;
	text-decoration: none;
}



.person-list {
	padding: 6px;
}

.person-button {
	display: flex;
	align-items: flex-start;
	margin: 0px 0;
	cursor: pointer;
	border: 0px solid #111111;
	padding:15px;
	font-size:16px;
}

.person-button img {
	width: 86px;
	height: 86px;            
	border-radius: 50%;     
	object-fit: cover;       
	margin-right: 20px;
}


.person-name {
	font-weight: bold;
	margin-bottom: 4px;
	font-size:18px;
}

.person-button.active {
	border: 0px solid #111111; 
	border-radius: 10px;    
	background-color: #37474F;
}

.person-button.inactive {
	pointer-events: none;
	opacity: 0.99;
	position: relative;
}

.person-button.inactive .button-mini-edit {
	pointer-events: auto;
}



.button-mini-edit {
	font-size: 0.8em;
	color: #90CAF9;
	background: transparent;
	border: 1px solid #90CAF9;
	padding: 6px 12px;
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
		z-index:5;
}

.button-mini-edit:hover {
	background-color: #90CAF9;
	color: #000;
}

.button-logout {
	background-color:#263238;
	border: none;
	border-radius: 30px;
	color: #fff;
	font-size: 16px;
	padding: 12px 24px;
	cursor: pointer;
	text-decoration: none;
}


#buyButtonContainer
{
	margin-top:20px;
}
