@charset "utf-8"; 
/* =========================================================
   Admin Custom CSS — admin-custom.css
   라이믹스 관리자 UI 커스텀 오버라이드
   (업데이트에 영향받지 않는 안전한 파일)
   ========================================================= */
.x .x_input-append a.x_add-on,
.x .x_input-prepend a.x_add-on {
	height: 100%;
	width: 30px;
	line-height: inherit;
}

.x input[type="text"],
.x input[type="password"],
.x input[type="datetime"],
.x input[type="datetime-local"],
.x input[type="date"],
.x input[type="month"],
.x input[type="time"],
.x input[type="week"],
.x input[type="number"],
.x input[type="email"],
.x input[type="url"],
.x input[type="search"],
.x input[type="tel"] {
	height: 30px;
	line-height: inherit;
}

/* =========================================================
   Bootstrap 5 vs Rhymix 관리자 모달 충돌 수정
   - Bootstrap 5의 .modal-backdrop(z-index:1050)이 .x_modal(z-index:1041)을 가리는 문제
   - Bootstrap 5의 .fade:not(.show){opacity:0} 규칙 충돌 방지
   ========================================================= */
.x_modal-backdrop {
	z-index: 1100 !important;
}
.x_modal {
	z-index: 1200 !important;
}
/* Bootstrap 3 .modal.in 호환 (Bootstrap 5는 .modal.show만 처리) */
.modal.in {
	display: block !important;
}
/* Bootstrap 5의 .fade:not(.show) 규칙이 관리자 모달에 영향주지 않도록 */
.x_modal.fade,
.x_modal.x_fade {
	opacity: 1 !important;
}
