.logo-header {
    display: flex;
	box-sizing: border-box;
	justify-content: space-between; 
	align-items: center;
    padding: 10px;
	min-height: fit-content;
    height: fit-content;
	width: 100%;
	background-color: #000000;
    color: white;
    text-wrap: nowrap;
    overflow: hidden;
	font-size: 150%;
}
.cu-logo {
    cursor: pointer;
}
.header-title {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: clamp(0.75rem, 1.5rem, 3vw);
    user-select: none;
}


.nav-bar {
	display: flex;
	box-sizing: border-box;
	justify-content: flex-end;
	column-gap: 0px;
	align-items: center;
	height: fit-content;
	width: 100%;
	border-style: solid;
	border-color: #000000;
	border-width: 0 0 1px;
	background-color: #ffffff;
	font-size: 150%;
}
.nav-bar-button {
	display: flex;
	/* border: 1px solid black; */
	border: transparent;
	align-items: center;
	justify-content: space-between;
	column-gap: 6px;
	border-radius: 6px;
	margin: 6px 3px;
	padding: 3px 10px;
	background-color: transparent;
	cursor: pointer;
    font-size: 65%;
}
.nav-bar-button:hover {
	background-color: #dadada;
	cursor: pointer;
}

.profile-wrapper {
	position: relative;
}
.profile-card {
	display: none;
	flex-direction: column;
	row-gap: 20px;
	align-items: center;
	padding: 15px;
	font-size: medium;
    z-index: 1000;
    position: absolute;
    background-color: #d8d8d8;
	border: 1px solid black;
	box-shadow: 0 0 10px 0 #000000;
	border-radius: 10px;
    top: 100%;
	right: 20px;
	width: fit-content;
}
.profile-card-header {
	display: inline-block;
	white-space: nowrap;
	pointer-events: none;
}
.profile-card-button {
	cursor: pointer;
	width: 200px;
	height: 40px;
	border: 0;
	border-radius: 20px;
	background-color: #d8d8d8;
	box-shadow: 0 0 5px 1px #000000;
}
.profile-card-button:hover {
	background-color: #c1c1c1;
}
