.editor-group {
  max-width: 100%;
  margin: 0px 0;
  
  
  overflow: hidden;
}


/* 글자 수 표시줄 */
.word-count-container {
  background-color: #f9f9f9;
  
  padding: 8px 15px;
  margin: 0;
  display: flex;
  justify-content: flex-end; /* 오른쪽 정렬 */
  font-size: 12px;
  color: #666;
  border-bottom:1px solid #CCCCCC;
  border-right:1px solid #CCCCCC;
  border-left:1px solid #CCCCCC;
  border-radius: 0px 0px 5px 5px;
}

.count-number {
  color: #3498db; /* 강조 색상 */
  font-weight: bold;
  margin-left: 4px;
}






.counter-wrapper {
	width:100%; /* 적절한 너비 설정 */
}

.form-con {
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 6px;
}

.form-con strong {
	font-family: 'Segoe UI', Roboto, sans-serif;
	color: #888;
	font-size: 13px;
}

#total_count {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

/* 하단 진행 바 배경 */
.progress-bg {
	width: 100%;
	height: 4px;
	background: #eee;
	border-radius: 2px;
	overflow: hidden;
}

/* 실제 차오르는 바 */
.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    transition: width 0.3s ease, background 0.3s ease; /* 배경색 변경도 부드럽게 */
}


.progress-fill.is-over {
    background: #ff4d4d; /* 붉은색 계열 */
}

/* (선택 사항) 글자 수도 붉게 만들고 싶다면 */
#total_count.is-over {
    color: #ff4d4d;
}





.counter-wrapper_sb {
	width:100%; /* 적절한 너비 설정 */
}

.form-con_sb {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 6px;
}

.form-con_sb strong {
	font-family: 'Segoe UI', Roboto, sans-serif;
	color: #888;
	font-size: 13px;
}
#total_count_sb {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

/* 하단 진행 바 배경 */
.progress-bg_sb {
	width: 100%;
	height: 4px;
	background: #eee;
	border-radius: 2px;
	overflow: hidden;
}

/* 실제 차오르는 바 */
.progress-fill_sb {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    transition: width 0.3s ease, background 0.3s ease; /* 배경색 변경도 부드럽게 */
}


.progress-fill_sb.is-over {
    background: #ff4d4d; /* 붉은색 계열 */
}

/* (선택 사항) 글자 수도 붉게 만들고 싶다면 */
#total_count_sb.is-over {
    color: #ff4d4d;
}





.is-limit-over {
    color: #ff4d4d !important;
    font-weight: bold !important;
}