<style>.notice-wrapper {
	display: flex;
	justify-content: left;
	width: 100%;
	margin: 0 auto;
	padding: 2px 0px 2px 0px;
}

.notice-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	border-radius: 4px;
	padding: 0px 8px 0px 8px;
	max-width: 1200px;
	width: 100%;
}

.notice-icon-column {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 16px;
}

.notice-icon-box {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border: 2px solid;
}

.notice-icon-box .notice-icon-text {
	font-size: 32px;
	font-weight: bold;
	line-height: 1;
}

.notice-text-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: left;
	margin-bottom: 12px;

}

.notice-title {
	margin-bottom: 8px;
}

.notice-content {
	margin: 0;
}

/* Orange Notice Style */
.notice-orange {
	background-color: #fff3e0;
	border: 1px solid #ff9800;
}

.notice-orange .notice-icon-box {
	background-color: #ff9800;
	border-color: #ffffff;
	color: #ffffff;
}

.notice-orange .notice-title,
.notice-orange .notice-content {
	color: #000000;
}

/* Green Notice Style */
.notice-green {
	background-color: #e8f5e9;
	border: 1px solid #ff9800;
}

.notice-green .notice-icon-box {
	background-color: #ff9800;
	border-color: #ffffff;
	color: #ffffff;
}

.notice-green .notice-title,
.notice-green .notice-content {
	color: #000000;
}

/* Blue Notice Style */
.notice-blue {
	background-color: #e3f2fd;
	border: 1px solid #2196f3;
}

.notice-blue .notice-icon-box {
	background-color: #2196f3;
	border-color: #ffffff;
	color: #ffffff;
}

.notice-blue .notice-title,
.notice-blue .notice-content {
	color: #000000;
}

@media (max-width: 768px) {
	.notice-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.notice-icon-column {
		margin-right: 0;
		margin-bottom: 12px;
		margin-top: 12px;
	}
}

</style>