/* Sidebar */
body {
	font-size: 13px;
}

.sidebar .sidebar-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.sidebar .nav>li>a::before {
	content: none !important;
}

.sidebar .nav,
.sidebar .nav .nav-collapse {
	list-style-type: none !important;
	padding-left: 0 !important;
}

.sidebar .nav .nav-collapse li a span::before {
	display: none !important;
	content: none !important;
}

/* Main Panel */
.table-custom-borders {
	border-left: 0;
	border-right: 0;
	border-top: 1px solid #dee2e6 !important;
}

.table-custom-borders thead th:first-child {
	border-left: 0;
}

.table-custom-borders thead th:last-child {
	border-right: 0;
}

.table-custom-borders tbody th:first-child,
.table-custom-borders tbody td:first-child {
	border-left: 0;
}

.table-custom-borders tbody th:last-child,
.table-custom-borders tbody td:last-child {
	border-right: 0;
}

/* index2.html 적용 */
/* Main Panel */
.nav-pills .nav-item .nav-link.active {
	background-color: #000000 !important;
	color: #ffffff !important;
}

.nav-pills .nav-item .nav-link {
	background-color: #ffffff !important;
	color: #000000 !important;
}

/* 색상 확인 및 변경 필요 */
.nav-pills .nav-item .nav-link:hover {
	background-color: #cce5ff !important;
	color: #0056b3 !important;
}

/* 여기부터 index1.html*/
.search-btn {
	height: 29px;
	margin-top: 1px;
}

.table-value {
	width: 70px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.table td,
.table th {
	padding: .25rem !important;
}

/* 여기까지 index1.html*/

.wd-90 {
	width: 90px;
}

.font11 {
	font-size: 11px;
}

.pd-sm {
	padding: 0.6rem 0.2rem;
}

.wd-200 {
	width: 200px;
}

.wd-120 {
	width: 120px;
}

.ellipsis {
	max-width: 500px;
	white-space: nowrap;
	/* 줄바꿈 없이 한 줄로 표시 */
	overflow: hidden;
	/* 넘친 텍스트 숨김 */
	text-overflow: ellipsis;
}

.ellipsis2 {
	max-width: 200px;
	white-space: nowrap;
	/* 줄바꿈 없이 한 줄로 표시 */
	overflow: hidden;
	/* 넘친 텍스트 숨김 */
	text-overflow: ellipsis;
}

.ellipsis3 {
	max-width: 300px;
	white-space: nowrap;
	/* 줄바꿈 없이 한 줄로 표시 */
	overflow: hidden;
	/* 넘친 텍스트 숨김 */
	text-overflow: ellipsis;
}

.ellipsis4 {
	max-width: 100px;
	white-space: nowrap;
	/* 줄바꿈 없이 한 줄로 표시 */
	overflow: hidden;
	/* 넘친 텍스트 숨김 */
	text-overflow: ellipsis;
}

.modal-back {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 99999;
	display: none;
}

.modal-img {
	position: absolute;
	top: 20%;
	left: 50%;
	margin-left: -250px;
}

.cursor-pointer {
	cursor: pointer;
}

.cs-modal {
	max-height: 700px;
	overflow-y: auto;
}

.btn-light {
	border: 1px solid #ced4da;
	color: #000;
}

.form-control {
	font-size: 13px;
}

.filter-option {
	font-size: 13px;
}

.no-results {
	font-size: 13px;
}

.btn-xs {
	padding: 0.3rem 0.6rem;
	font-size: 10px;
	line-height: 1.5;
	border-radius: 0.15rem;
}

.btn-sm {
	padding: 5.5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 0.15rem;
}

#logoutText {
	font-size: 12px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

.h5 {
	font-size: 16px;
}

.card {
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn {
	font-size: 12px;
}

.cartText {
	font-size: 14px;
}

table td input {
	text-align: center;
	/* input 값 가운데 정렬 */
	margin: 0 auto;
	/* input 자체를 가운데 배치 */
}

/* 선택된 날짜를 흰 배경 + 검은 글씨로 강제 */
body .flatpickr-calendar .dayContainer .flatpickr-day.selected,
body .flatpickr-calendar .dayContainer .flatpickr-day.startRange,
body .flatpickr-calendar .dayContainer .flatpickr-day.endRange,
body .flatpickr-calendar .dayContainer .flatpickr-day.selected.inRange,
body .flatpickr-calendar .dayContainer .flatpickr-day.today.selected {
	background: #fff !important;
	color: #000 !important;
	border-color: #000 !important;
	box-shadow: none !important;
}

/* hover 시에도 회색 안 뜨게 */
body .flatpickr-calendar .dayContainer .flatpickr-day:hover {
	background: #f5f5f5 !important;
	/* 연한 구분 원하면 유지, 완전 제거 원하면 #fff */
	color: #000 !important;
}

/* 범위 선택(inRange) 색도 흰색으로 통일하고 싶다면 */
body .flatpickr-calendar .dayContainer .flatpickr-day.inRange {
	background: #fff !important;
	color: #000 !important;
	box-shadow: none !important;
}

/* 오늘(today) 기본 파란 테두리 제거하고 싶다면(선택 아님) */
body .flatpickr-calendar .dayContainer .flatpickr-day.today {
	border-color: #000 !important;
	/* 필요 없으면 주석 처리 */
}

/* AS관리 등록에 셀렉트 */
#pdName+.dropdown-toggle .filter-option-inner-inner {
	color: #6c757d;
}
.salesMemo{	
	word-wrap: break-word;
	/* 또는 */
	overflow-wrap: break-word;
}