.page-header {
	display: flex;
	flex-direction: row;
	border: 1px dimgrey;
	box-shadow: 0px 0px 6px lightgrey;
	align-items: center;
	z-index: 10;
	background-color: #fafafa;
	gap: 5px;
}

.header-logo {
	font-family: hand-bold;
	font-size: 24px;
	padding-left: 30px;
	flex-grow: 6;
	user-select: none;
}

.header-search {
	background-image: url(./img/search.svg);
	background-size: auto;
	background-repeat: no-repeat;
	height: 20px;
	width: 20px;
	min-width: 20px;
	margin-right: 20px;
	cursor: pointer;
}

.header-class-container {
    max-width: min-content;
    min-width: 73px;
    height: 44.8px;
    background-color: #e3e3e3;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-class-join {
	font-family: hand;
	font-size: 20px;
	background-color: #1bb893;
	color: white;
	padding: 10px;
	border-radius: 10px;
	cursor: pointer;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-class-current {
	font-family: hand;
	font-size: 18px;
	padding: 10px;
	cursor: pointer;
    background-color: #e3e3e3;
    border-radius: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-signout-button {
	font-family: hand;
	font-size: 20px;
	background-color: rgb(253,94,83);
	border-radius: 10px;
	color: whitesmoke;
	text-align: center;
	padding: 10px;
	margin-right: 10px;
	flex-grow: 1;
	cursor: pointer;
	min-width: 80px;
}

.header-class-join-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.header-class-join-text {
	font-family: hand;
	font-size: 20px;
	margin: 20px 0px 0px 0px;
	width: 100%;
}

.header-class-join-input {
	font-family: hand;
    font-size: 20px;
    border-width: 2px;
    border-color: #666666;
    border-radius: 5px;
    border-style: solid;
    padding: 5px;
    box-sizing: border-box;
}

.header-class-join-button {
	font-family: hand;
	font-size: 18px;
	background-color: #1bb893;
	color: white;
	padding: 10px;
	border-radius: 10px;
	cursor: pointer;
	width: min-content;
}

.header-class-leave-button {
	font-family: hand;
	font-size: 18px;
	background-color: lightcoral;
	color: white;
	padding: 10px;
	border-radius: 10px;
	cursor: pointer;
}

.header-spinner {
	height: 20px;
    background-image: url(./img/spinner.svg);
    background-repeat: no-repeat;
    background-position-x: center;
    width: 20px;
}