/* 전체 모달 */
.downModal {
	font-family: 'Noto Sans KR', sans-serif;
	border-radius: 0;
	border: none;
	overflow: hidden;
/* 	height:380px; */
}
#filedown_header_modal_title{
	font-weight:normal;
	margin: auto;
}
/* 헤더 */
.modalDownHeader {
	background-color: #d7dbdd;
	padding: 12px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ccc;
}

.modalDownHeader h5 {
	font-size: 16px;
	font-weight: bold;
	margin: 0;
}

/* 모달 바디 영역 */
.modalDownBody {
	background-color: #f9f9f9;
	min-width: 500px;
	display: flex;
	flex-direction: row;
/* 	position: relative; */
}

/* 좌측 다운로드 옵션 영역 */
.download-options {
	min-width: 500px;
	display: flex;
	flex-direction: column;
/*   gap: 20px; */
}
/*우측 다운로드 옵션 기본세팅*/
.downIndivFileList {
	width: 350px;
	display: none;
	background: #f9f9f9;
	padding: 10px;
	box-sizing: border-box;
}
/* 카드 스타일 */
.downloadMain {
	height:110px;
	display: flex;
	align-items: center;
	background: #fff;
	position: relative;
}
.pdfFile{
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}
/* .iconOrigin { */
/*   margin-right: 16px; */
/*   flex-shrink: 0; */
/*   background-size: contain; */
/*   background-repeat: no-repeat; */
/* } */

/* 아이콘 별도 지정 (그대로 유지) */
.iconOrigin {
	margin-left:35px;
	margin-right:35px;
	width: 49px;
	height: 63px;
	background-image: url(/view/resources/img/icon/def_ext_icon-55ab5922ca4213b7b9e3f91b1b8f2a41.svg);
}
.iconPDF {
	margin-left:35px;
	margin-right:35px;
	width: 48px;
	height: 62px;
	background-image: url(/view/resources/img/icon/ic_pdf-88a05e854ba632f9edbb1af8c48d562d.svg);
}
.iconMarkUp {
	margin-left:35px;
	margin-right:35px;
	width: 48px;
	height: 50px;
	background-image: url(/view/resources/img/icon/icon_draw_free-f448af56ef83f50e2412bce041dd9852.svg);
}

/* 카드 내용 */
.downBody {
	display: flex;
	align-items: center;
}

.downBody strong {
	font-size: 16px;
	font-weight: bold;
	display: block;
}

.downBody p {
	font-size: 13px;
	color: #666;
}
.downText {
	width:150px;
}
/* 버튼 스타일 */
.downbtns {
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	width: 120px;
}
.downbtns .btn {
	display: block;
	margin-bottom: 6px;
}
.downbtns .btn:last-child {
	margin-bottom: 0;
}
.downbtns .btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 13px;
	width: 120px; /* 고정 너비 */
	height: 36px;
	box-sizing: border-box;
	white-space: nowrap;         /* 줄바꿈 방지 */
	overflow: hidden;            /* 넘치는 부분 숨김 */
	text-overflow: ellipsis;     /* 말줄임 처리 */
}

.downbtns .btn-outline-secondary {
	background-color: #f5f5f5;
	border-color: #ccc;
	color: #333;
}

.downbtns .btn-outline-secondary:hover {
	background-color: #e0e0e0;
}

.downbtns .btn-dark {
	background-color: #374248;
	color: #fff;
	border: none;
}

.downbtns .btn-dark:hover {
	background-color: #2c353b;
}

/* 우측 파일 리스트 스타일 */
.file-list {
	padding-left: 20px;
}

.file-list h6 {
	font-weight: bold;
	font-size: 15px;
	margin-bottom: 10px;
}

.file-list ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.file-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	font-size: 14px;
}

.fileIndivDownList {
	cursor: pointer;
}
.iconDownTarget{
	width:25px;
	height:25px;
	flex: none;
}
.downModal.isActive {
	transform: translateX(-350px);
/* 	transition: transform 0.3s ease; */
}
.fileNameArea {
	max-width: 250px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
}
.fileItemWrap {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}
.downloadBtn {
	margin-left: auto;
	flex: none;
}
