.sidebar .menu_product .depth02 {
    display: block;
}
.sidebar .menu_product .slide::after {
    transform: rotate(-45deg);
}
.sidebar .menu_product .slide.active::after {
    transform: rotate(135deg);
}
.sidebar .supplierList {
    background: #f6f6f6;
    color: var(--theme);
}
.sidebar .supplierList::before {
    opacity: 1;
}


#psllistApp {
    height: 100%;
    font-size: 1.6rem;
    overflow-y: auto;
}

.header_top,
.header_bottom,
.main {
    min-width: 1200px;
}


.container {
    width: 100%;
    overflow-x: hidden;
}
.main .container button.submit {
    background: var(--theme);
    color: #fff;
}

.controls {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    padding: 1.2rem;
    border-radius: 0.8rem;
    background: #fff;
}
.controls .flex {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}
.controls .key {
    margin-right: 1rem;
}
.controls input {
    height: 3.2rem;
    padding: 0 1.5rem;
    border: 1px solid #dcdfe6;
    border-radius: 0.3rem;
}
.controls .btns button {
    width: 5.4rem;
    height: 3.2rem;
    border-radius: 0.3rem;
    margin-left: 1rem;
    font-size: 1.2rem;
}
.btns .reset {
    border: 1px solid #dcdfe6;
    color: #606266;
}

.data {
    padding: 1.2rem;
    margin-top: 1.6rem;
    border-radius: 0.8rem;
    background: #fff;
}
.data .buttons button {
    width: 5.4rem;
    height: 3.2rem;
    border-radius: 0.3rem;
    margin-right: 1rem;
    font-size: 1.2rem;
}
.data .delete {
    border: 1px solid #dcdfe6;
    color: #606266;
}
.data .table .nodata {
    display: flex;
    justify-content: center;
    align-items:center;
    width: 100%;
    min-height: 400px;
    color: #909399;
}

.regist-pop .pop_frame {
    max-width: 500px;
}
.regist-pop .list li {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}
.regist-pop .list .key {
    width: 25%;
    margin-top: 7px;
    text-align: right;
    color: #606266;
}
.regist-pop .list .value {
    position: relative;
    width: 72%;
}
.regist-pop .list input {
    width: 100%;
    height: 30px;
    padding-right: 50px;
}
.regist-pop .value span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 10px;
    color: #acacac;
}
.regist-pop .value label {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    padding-top: 20px;
    border: 1px dashed #999;
    color: #999;
    background: #f5f5f5;
    border-radius: 4px;
    text-align: center;
    font-size: 11px;
    overflow: hidden;
}
.regist-pop .value label .sample {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.regist-pop .value label .icon {
    font-size: 20px;
}
.regist-pop .value textarea {
    width: 100%;
    height: 95px;
    border: 1px solid #dcdfe6;
    color: #606266;
    border-radius: 4px;
    padding: 15px;
}

.delete_pop .pop_frame {
    max-width: 400px;
}
.delete_pop .pop_frame .text {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.38;
}
.delete_pop .text .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 17px;
    border-radius: 50%;
    background: #e6a23c;
    color: #fff;
    text-align: center;
    font-variation-settings: "wght" 500;
}

/* ===== supplierList 팝업 기본 스타일 (v-if 표시 방식 대응) ===== */
.supplierList .popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block !important;	/* 공통 CSS의 display:none을 무력화 */
	z-index: 9999;
}

.supplierList .popup .dimm {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.45);
}

/* ===== 업체 목록 테이블 공통 ===== */
.supplierList .table {
	margin-top: 16px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.04);
	overflow: hidden;
}

.supplierList table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 14px;
}



.supplierList .popup .pop_overlay {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.supplierList .popup .pop_frame {
	width: 100%;
	max-width: 520px;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* 테이블 헤더 */
.supplierList table thead th {
	background: #f5f6f8;
	color: #222;
	font-weight: 600;
	padding: 14px 12px;
	text-align: center;
	border-bottom: 1px solid #e5e7eb;
}

.supplierList table thead th:first-child {
	border-top-left-radius: 8px;
}

.supplierList table thead th:last-child {
	border-top-right-radius: 8px;
}

/* 테이블 바디 */
.supplierList table tbody td {
	padding: 14px 12px;
	border-bottom: 1px solid #eef0f3;
	text-align: center;
	color: #333;
	background: #fff;
}

/* 왼쪽 정렬 컬럼 (URL) */
.supplierList table tbody td.left {
	text-align: left;
}

/* 마지막 줄 border 제거 */
.supplierList table tbody tr:last-child td {
	border-bottom: none;
}


/* 체크박스 */
.supplierList table input[type="checkbox"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

/* 관리 버튼 */
.supplierList table td button.submit {
	padding: 6px 12px;
	font-size: 13px;
	border-radius: 4px;
	background: #ff6a00;
	color: #fff;
	border: none;
	cursor: pointer;
}

.supplierList table td button.submit:hover {
	background: #e85f00;
}


.supplierList table a {
	color: #2563eb;
	text-decoration: none;
}

.supplierList table a:hover {
	text-decoration: underline;
}

/* 데이터 없음 */
.supplierList .nodata {
	padding: 40px 0;
	color: #666;
	font-size: 14px;
	text-align: center;
}

.supplierList table tbody tr:hover td {
	background: #fafafa;
}


/* 체크박스가 전역 스타일로 사라지는 문제를 강제 복구 (supplierList 전용) */
.supplierList input[type="checkbox"]{
	display: inline-block !important;
	opacity: 1 !important;
	visibility: visible !important;
	position: static !important;
	width: 18px !important;
	height: 18px !important;
	appearance: auto !important;
	-webkit-appearance: auto !important;
	accent-color: var(--theme);
	cursor: pointer;
	pointer-events: auto !important;
}

/* 혹시 모를 전역 커스텀 체크박스 스타일 무력화 */
.supplierList table input[type="checkbox"]{
	appearance: auto !important;
	-webkit-appearance: auto !important;
	background: initial !important;
	border: initial !important;
	box-shadow: none !important;
}

