body {
	background: #0089ff14;
	display: flex;
	justify-content: center;
}
.content {
	background: #fff;;
	margin-top: 5%;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 10px;
}
.bold {
	font-weight: bold;
}
p {
	margin: 0;
	padding: 0;
}

.form-group {
	padding: 10%;
}

@media (max-width: 1000px) {
	.content {
		flex-basis: 80% !important;
	}
}
@media (max-width: 768px) {
	.content {
		flex-basis: 100% !important;
	}
}

.item {
	background-color: #e0f2f7;
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.item.name {
	background-color: #4CAF50;
	color: white;
}
.item div {
	width:100%;
	padding:10px;
	color: #fff;;
}
.item.id {
	background-color: #2196F3;
	color: white;
}

.item.status {
	background-color: #4CAF50;
	color: white;
}

.item > span {
	font-weight: bold;
	margin-bottom: 5px;
}

.back-button {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background-color: #2196F3;
	color: white;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.notice a {
	color: #fff;;
}