.class-page {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1000px;
	min-height: 100%;
	background-color: whitesmoke;
	position: relative;
	padding: 0px 10px;
	box-sizing: border-box;
}

.class-page-toolbar {
	display: flex;
	flex-direction: row;
	margin-top: 40px;
	gap: 20px;
	align-items: center;
}

.class-page-refresh-button {
	background-image: url('./img/refresh.svg');
	background-repeat: no-repeat;
    background-position-x: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.class-page-back-button {
	font-family: hand-bold;
	font-size: 30px;
	cursor: pointer;
	width: min-content;
	border: solid 4px;
    border-radius: 100px;
    padding: 0px 10px 2px 8px;
    color: #3093ea;
}

.class-page-info-bar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	margin-top: 40px;
}

.class-page-name {
	font-family: hand;
	font-size: 40px;
	text-decoration: underline;
	margin: 0px 0px 10px 0px;
}

.class-page-delete {
	font-family: hand;
	font-size: 20px;
	background-color: #ff7676;
    border-radius: 5px;
    height: min-content;
    padding: 10px;
    cursor: pointer;
}

.class-page-code {
	margin: 0px;
	width: 100%;
	font-family: hand;
	font-style: italic;
	font-size: 18px;
}

.class-page-student-label {
	width: 100%;
	font-family: hand-bold;
	font-size: 30px;
	margin-bottom: 0px;
}

.class-page-student-container {
	width: 100%;
	background-color: #e3e3e3;
	padding: 10px;
	border-width: 0px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	margin-top: 10px;
	box-sizing: border-box;
	gap: 10px;
	align-items: center;
}

.class-page-no-students {
	width: 100%;
	font-family: hand;
	font-size: 20px;
	border-radius: 5px;
	text-align: center;
}

.class-page-del-check-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.class-page-del-check-text {
	font-family: hand;
	font-size: 20px;
}

.class-page-del-check-resp-container {
	display: flex;
	flex-direction: row;
	gap: 5px;
}

.class-page-del-check-cancel, .class-page-del-check-confirm {
	font-family: hand;
	font-size: 18px;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
}

.class-page-del-check-cancel {
	background-color: #e3e3e3;
}

.class-page-del-check-confirm {
	background-color: lightcoral;
}