.announcement-container {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

.announcement-title p {
	top: 0;
	font-family: "Comic Neue", cursive; /* 귀여운 느낌의 글꼴 사용 */
	font-size: 1.5rem; /* 글자 크기 */
	color: #9b9b9b; /* 밝은 핑크색 글자 */
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* 텍스트 그림자 */
	background: linear-gradient(to right, #999999, #cacaca); /* 그라데이션 배경 */
	-webkit-background-clip: text; /* 텍스트에 배경 클립 */
	-webkit-text-fill-color: transparent; /* 텍스트 채우기 색상 투명 */
	display: inline-block; /* 텍스트를 인라인 블록으로 설정 */
	padding: 10px 20px; /* 내부 여백 */
	border: 2px solid #8a8a8a; /* 테두리 색상 */
	border-radius: 12px; /* 둥근 테두리 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 상자 그림자 */
	position: relative;
	margin-left: 10px;
}

.announcement-conmain {
	width: 100%;
	height: auto;
}

.announcement-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 10px;
	border: 1px solid black;
	border-radius: 20px;
	padding: 10px;
}

.announcement-content:hover {
	background-color: #eeeeee;
	cursor: pointer;
}
.announcement-detail-content{
	display:flex;
	border-bottom: 1px solid black;
}

.announcement-con-title {
	flex: 1;
	padding-left: 20px;
}

.announcement-con-date {
	font-size: 10pt;
}

.announcement-con-txt {
	font-size: 13pt;
	text-align: left;
	margin: 10px;
}

.announcement-number {
	padding: 0px 10px;
	border-right: 1px solid gray;
}

.announcement-bottom {
	display: flex;
	justify-content: space-between;
}

#insert-button {
	padding: 5px 0px;
}

#announcement-title {
	width: 95%;
}

.announcement-page-no {
	margin: 0px 10px;
}

.cute-button-blue {
	font-family: "Noto Sans JP", sans-serif; /* 일본어 텍스트에 어울리는 글꼴 사용 */
	font-size: 1rem; /* 글자 크기 */
	color: #fff; /* 텍스트 색상 */
	background: linear-gradient(45deg, #6985ff, #69c3ff);
	/* 버튼 배경색 그라데이션 */
	border: none; /* 기본 테두리 제거 */
	border-radius: 20px; /* 둥근 테두리 */
	padding: 10px 20px; /* 내부 여백 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 상자 그림자 */
	cursor: pointer; /* 커서 변경 */
	transition: background 0.3s ease, transform 0.3s ease; /* 부드러운 전환 효과 */
}

.cute-button-blue:hover {
	background: linear-gradient(45deg, #6985ff, #69c3ff);
	/* 호버 시 배경색 그라데이션 변경 */
	transform: translateY(-3px); /* 호버 시 살짝 위로 이동 */
}

.cute-button-blue:active {
	background: linear-gradient(45deg, #6985ff, #69c3ff); /* 클릭 시 배경색 유지 */
	transform: translateY(0); /* 클릭 시 원래 위치로 돌아감 */
}

.cute-button-blue:focus {
	outline: none; /* 포커스 시 기본 아웃라인 제거 */
	box-shadow: 0 0 0 3px rgba(105, 153, 255, 0.5); /* 포커스 시 그림자 효과 추가 */
}