
/* =*=*=*=*=*=*=*=*=*=*=*= [S] 알랏창 버튼 커스터마이징 =*=*=*=*=*=*=*=*=*=*=*= */
/* 알랏창 [확인] 버튼 커스터미이징 */
.btn-confirm-control {
    display: flex !important;
    padding: 8px 16px !important;
    margin-right: 10px;
    border: 1px solid transparent !important;
    border-radius: 15px;
    background: #ea7a35 !important;
    color: #ffffff !important;
}
.btn-confirm-control:hover {
    border: 1px solid transparent !important;
    background: #f68e50 !important;
    color: #ffffff !important;
}
.btn-confirm-control:focus {
    outline: none;
}
/* 알랏창 [취소] 버튼 커스터미이징 */
.btn-cancel-control {
    display: flex !important;
    padding: 8px 16px !important;
    margin-left: 10px;
    border: 1px solid transparent !important;
    border-radius: 15px;
    background: #171717EC !important;
    color: #ffffff !important;
}
.btn-cancel-control:hover {
    border: 1px solid transparent !important;
    background: #000000 !important;
    color: #ffffff !important;
}
.btn-cancel-control:focus {
    outline: none;
}
/* =*=*=*=*=*=*=*=*=*=*=*= [E] 알랏창 버튼 커스터마이징 =*=*=*=*=*=*=*=*=*=*=*= */

/* =*=*=*=*=*=*=*=*=*=*=*= [S] 모달 팝업창 커스터마이징 =*=*=*=*=*=*=*=*=*=*=*= */
.popupContainer {
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.popupContainer.hidden {
    display: none;
}

.popupContent {
    /*position: absolute;
    background-color: #ffffff;
    width: 550px;
    min-height: 400px; !* 기본 높이를 설정 *!
    padding: 20px;
    height: auto; !* 내용에 따라 높이가 늘어나도록 설정 *!*/

    position: absolute;
    background-color: #ffffff;

    min-width: 320px;     /* 모바일 최소 너비 제한 */
    max-width: 90vw;      /* 화면 너비의 90%까지 허용 */
    width: 550px;         /* 기본 너비 (가로 사이즈 고정하고 싶다면 이거만 유지해도 OK) */

    min-height: 890px;       /* ✅ 최소 높이 890px */
    max-height: 90vh;         /* ✅ 뷰포트 기준 최대 높이 제한 (필요시 조정 가능) */
    padding: 20px;
    overflow-y: auto;         /* ✅ y스크롤 추가 */
}

.popupContent.popup-textarea {
    min-height: 400px; /* 기본 최소 높이 설정 */
    height: auto; /* 내부 요소의 크기에 따라 늘어나도록 설정 */
}

.popupContent.popup-only-uploader {
    min-height: 400px; /* 기본 최소 높이 설정 */
    height: auto; /* 내부 요소의 크기에 따라 늘어나도록 설정 */
}

.popupContent.popup-text {
    min-height: 100px;
}

.padding-10 {
    padding: 10px;
}

.main-popup-title {
    height: 100%;
    border: none;
    padding: 20px 20px 0px 0px;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
}

.main-popup-title h3 {
    position: relative;
    margin-bottom: 20px;
}

.main-popup-title h3::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -12px;
    background-color: #e97730;
    width: 50px;
    height: 2px;
}

.main-popup-body,
.main-popup-footer {
    padding: 10px; /* 동일한 패딩 적용 */
    box-sizing: border-box; /* 패딩 포함 크기 조정 */
}

.main-popup-body{
    padding-left: 15px;
}

/* 팝업 본문 */
.main-popup-body.popup-textarea {
    min-height: 280px; /* 기본 최소 높이 설정 */
    height: auto; /* 내부 내용에 따라 늘어나도록 설정 */
}

.main-popup-body.popup-text {
    min-height: 80px;
}

/* 텍스트영역 */
.main-popup-textarea {
    height: auto; /* textarea 높이가 늘어나면 컨테이너도 늘어나도록 설정 */
    padding-top: 30px;
}

.main-popup-textarea label {
    font-weight: 300;
    font-size: 13px;
}

.main-popup-textarea textarea {
    border: 1px solid #d6cbcb;
    background-color: #ffffff;
    color: #4a4a4a;
    font-weight: 300;
    height: 150px;
    margin-bottom: 20px;
}

/* 팝업 하단 버튼 */
.main-popup-footer {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.main-popup-footer .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-popup-left-btn {
    display: flex !important;
    padding: 8px 16px !important;
    margin-right: 10px;
    width: 150px;
    height: 35px;
    border: 1px solid transparent !important;
    color: #ffffff !important;
}

.main-popup-left-btn:focus {
    outline: none;
}

.main-popup-right-btn {
    display: flex !important;
    padding: 8px 16px !important;
    margin-left: 10px;
    border: 1px solid transparent !important;
    width: 280px;
    height: 35px;
    color: #ffffff !important;
}

.main-popup-right-btn:focus {
    outline: none;
}

.btn-black {
    background: #171717EC !important;
}

.btn-black:hover {
    border: 1px solid transparent !important;
    background: #000000 !important;
    color: #ffffff !important;
}

.btn-red {
    background: #ea7a35 !important;
}

.btn-red:hover {
    border: 1px solid transparent !important;
    background: #f68e50 !important;
    color: #ffffff !important;
}

/* 추가된 스타일 */

/* 팝업 본문 크기 증가시 부모도 늘어나도록 설정 */
.popupContent.popup-uploader {
    height: auto; /* 내용에 따라 높이가 늘어나도록 설정 */
}

.main-popup-body.popup-uploader {
    min-height: 300px; /* 기본 최소 높이 설정 */
    height: auto; /* 내용에 따라 부모가 늘어나도록 설정 */
}

.main-popup-body.popup-form {
    min-height: 300px; /* 기본 최소 높이 설정 */
    height: auto; /* 내용에 따라 부모가 늘어나도록 설정 */
}

/* 이미지 업로더 */
#thumbmail-modal-uploader {
    height: auto; /* 이미지 업로더 크기 증가에 맞게 컨테이너 크기도 늘어나도록 설정 */
}

/* 업로더 및 삭제 버튼 스타일 */
#modal-image-upload-btn, #modal-image-delete-btn {
    height: 35px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 텍스트 입력 크기 자동 조정 */
textarea, .form-control {
    height: auto; /* 내용에 맞게 높이가 자동으로 늘어남 */
}

/* =*=*=*=*=*=*=*=*=*=*=*= [E] 모달 팝업창 커스터마이징 =*=*=*=*=*=*=*=*=*=*=*= */


/* =*=*=*=*=*=*=*=*=*=*=*= [S] 첨부파일 목록 =*=*=*=*=*=*=*=*=*=*=*= */
.addfile_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}
.addfile_item {
    background: #faf9f2;
    width: 100%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 8px;
    height: 40px;
}
.map_area img {
    width: 100%;
}
.addfile_item .icon_addfile {
    flex: none;
}
.addfile_item .subject {
    position: relative;
    display: inline-block;
    max-width: 285px;
    color: #2c395e;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
}.addfile_item .subject .name {
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 1;
     overflow: hidden;
     text-overflow: ellipsis;
     margin-right: 20px;
 }
.addfile_item .subject .ext {
    position: absolute;
    bottom: 0;
    right: 0;
}
.addfile_item .subject .name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 20px;
}
.addfile_item .subject .ext {
    position: absolute;
    bottom: 0;
    right: 0;
}
/* =*=*=*=*=*=*=*=*=*=*=*= [E] 첨부파일 목록 =*=*=*=*=*=*=*=*=*=*=*= */



/* =*=*=*=*=*=*=*=*=*=*=*= [S] 대표이미지 테이블 =*=*=*=*=*=*=*=*=*=*=*= */
.artist-work-table-content .table-content table {
    width: 100%;
}

.artist-work-table-content .table-content table thead {
    background-color: #f3f3f3;
}

.artist-work-table-content .table-content table thead > tr th {
    color: #000000;
    font-size: 14px;
    text-transform: uppercase;
    padding: 16px 12px 14px;
    font-weight: 600;
}

.artist-work-table-content .table-content table thead > tr th.width-thumbnail {
    min-width: 130px;
    text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .artist-work-table-content .table-content table thead > tr th.width-thumbnail {
        min-width: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .artist-work-table-content .table-content table thead > tr th.width-thumbnail {
        min-width: 80px;
    }
}

.artist-work-table-content .table-content table thead > tr th.width-name {
    min-width: 600px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .artist-work-table-content .table-content table thead > tr th.width-name {
        min-width: 200px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .artist-work-table-content .table-content table thead > tr th.width-name {
        min-width: 100px;
    }
}

@media only screen and (max-width: 767px) {
    .artist-work-table-content .table-content table thead > tr th.width-name {
        min-width: 150px;
    }
}

.artist-work-table-content .table-content table thead > tr th.width-remove {
    min-width: 50px;
}

.artist-work-table-content .table-content table tbody > tr {
    border-bottom: 1px solid #e5e5e5;
}

.artist-work-table-content .table-content table tbody > tr td {
    padding: 23px 12px;
}

.artist-work-table-content .table-content table tbody > tr td.product-thumbnail a {
    display: block;
}

.artist-work-table-content .table-content table tbody > tr td.product-thumbnail a img {
    width: 80px;
}

@media only screen and (max-width: 767px) {
    .artist-work-table-content .table-content table tbody > tr td.product-thumbnail a img {
        width: 60px;
    }
}

.artist-work-table-content .table-content table tbody > tr td.product-name h5 {
    display: block;
    font-size: 15px;
    color: #000000;
}

.artist-work-table-content .table-content table tbody > tr td.product-name h5 a {
    color: #000000;
}

.artist-work-table-content .table-content table tbody > tr td.product-name h5 a:hover {
    color: #e97730;
}

.artist-work-table-content .table-content table tbody > tr td.product-remove-edit {
    gap: 20px;
    text-align: center;
}


.artist-work-table-content .table-content table tbody > tr td.product-remove-edit i {
    display: inline-block;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 15px 10px;
    line-height: 1;
    white-space: pre;
    z-index: 1;
}
/* =*=*=*=*=*=*=*=*=*=*=*= [E] 대표이미지 테이블 =*=*=*=*=*=*=*=*=*=*=*= */


/* =*=*=*=*=*=*=*=*=*=*=*= [S] 예술인 등록 양식 하단 버튼 =*=*=*=*=*=*=*=*=*=*=*= */
.btn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.right-buttons {
    display: flex;
    gap: 10px;
    flex: 1; /* 오른쪽 영역도 왼쪽과 동일한 비율로 설정 */
    justify-content: flex-end;
}

/* 버튼 기본 스타일 */
.btn-ok, .btn-step {
    flex: 1;
    min-width: 120px;
    max-width: 25%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.left-btn {
    flex: 1;  /* 왼쪽 버튼이 오른쪽 버튼과 같은 비율을 가지도록 설정 */
    min-width: 120px;
    max-width: 20%; /* 오른쪽 버튼과 동일한 크기 제한 */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 버튼 색상 */
.btn-ok {
    background-color: #e97730 !important;
    border: 1px solid #e97730 !important;
}

.btn-ok:hover {
    background-color: #e76c22 !important;
    border: 1px solid #e76c22 !important;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .btn-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* 작은 화면에서는 버튼이 너무 길어지지 않도록 조정 */
    .left-btn, .btn-ok, .btn-step {
        /* max-width: 45%;  */
        max-width: 30%;
        min-width: 100px;
        padding: 18px 10px;
    }
}
/* =*=*=*=*=*=*=*=*=*=*=*= [E] 예술인 등록 양식 하단 버튼 =*=*=*=*=*=*=*=*=*=*=*= */


/* =*=*=*=*=*=*=*=*=*=*=*= [S] datatables =*=*=*=*=*=*=*=*=*=*=*= */
/* table */

.table.dataTable {
	margin-top: 0 !important;
}
.table:not(.table-dark):not(.table-light) thead:not(.table-dark) th,
.table:not(.table-dark):not(.table-light) tfoot:not(.table-dark) th {
	background-color: #f7f7f7;
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	border-right-width: 0;
}
.dataTables_scrollBody {
	background: #fff;
}
.tableBot {
	box-shadow: 0 5px 5px -5px #62646e1a;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	background: #fff;
	padding: 10px 30px;
}
.table-bordered > :not(caption) > * {
	border-width: 0;
}
.table-bordered > :not(caption) > * > * {
	border-width: 0;
}
.card .table tbody tr:last-child > * {
	border-bottom-width: 1px;
}
table.table-bordered.dataTable td:first-child,
table.table-bordered.dataTable td:first-child {
	border-left-width: 0;
}

table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
	border-right-width: 0;
}

table.dataTable thead th {
	color: #2c395e;
	font-weight: 700;
	text-align: left;
}
table.dataTable th {
	padding-top: 1.875rem;
	padding-bottom: 1.625rem;
}
table.dataTable td {
	color: #2c395e;
	padding-top: 1.688rem;
	padding-bottom: 1.688rem;
	text-align: left;
}
table.dataTable td a {
	color: #000;
}

.table-hover tbody tr {
    cursor: pointer;
}
.table_wrap {
	background: #fff;
}
.total_num {
	color: #1e38a7;
	font-size: 0.875rem;
	margin-right: 40px;
}
.table.notice td {
	font-size: 0.875rem;
	font-weight: 600;
	color: #004a91;
}
.table.notice td a {
	color: #000;
}
.btn_toplist {
	list-style: none;
	display: flex;
	align-items: center;
	padding-left: 0;
	margin-bottom: 0;
}
.btn_toplist li {
	margin-right: 10px;
}
.btn_toplist li:last-child {
	margin-right: 0;
}
.btn_toplist li .w_1 {
	min-width: 87px;
}
.btn_toplist li .w_2 {
	min-width: 110px;
}

.type01:not(.table-dark):not(.table-light) thead:not(.table-dark) th,
.type01:not(.table-dark):not(.table-light) tfoot:not(.table-dark) th {
	background-color: #eaedf0;
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	border-right-width: 0;
}
.type01.dataTable th {
	padding-top: 0.875rem;
	padding-bottom: 0.625rem;
	color: #000;
}
.type01.dataTable td,
.type01.dataTable th {
	padding: 0.72rem 0.875rem;
	vertical-align: middle;
	border-bottom: 0;
}
.type01.dataTable .even td {
	background: #f9f9fa;
}
.type01.dataTable td p {
	line-height: 1;
	margin-bottom: 0;
}

.type02:not(.table-dark):not(.table-light) thead:not(.table-dark) th,
.type02:not(.table-dark):not(.table-light) tfoot:not(.table-dark) th {
	background-color: transparent;
	border-top-width: 0;
	border-left-width: 0;
	border-bottom-width: 0;
	border-right-width: 0;
}
.type02.dataTable th {
	padding-top: 0.875rem;
	padding-bottom: 0.625rem;
	color: #000;

	border-bottom: 1px solid #dddde0;
}
.type02.dataTable tbody {
	border-top: 1px solid #dddde0;
}
.type02.dataTable td,
.type02.dataTable th {
	padding: 23px 0;
	vertical-align: middle;
	border-bottom: 0;
}
.type02.dataTable td {
	border-top: 1px solid #dddde0;
}
.type02.dataTable td p {
	line-height: 1;
	margin-bottom: 0;
}
.type02.dataTable td .tb_team {
	color: #2c395e;
}
.tb_scroll {
	max-height: 900px;
	overflow-y: auto;
}
.tb_scroll .type02 tr.active td {
	background: #f0f3ff;
}
.box_ing {
	background: #f8f8f8;
	border-radius: 15px;
	padding: 40px 90px 90px 90px;
	margin-top: 67px;
}
.box_ing img {
	width: 100%;
}
.box_ing .g_title {
	color: #2c395e;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
}

table.dataTable {
	width: 100% !important;
	border-collapse: collapse !important;
}

table.dataTable.table-responsive:not(.datatables-ajax) {
	display: block;
}

table.dataTable td,
table.dataTable th {
	padding: 0.72rem 1.0rem;
	vertical-align: middle;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
	padding-right: inherit;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e5873' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-up'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
	color: #6e6b7b;
	width: 14px;
	height: 14px;
	content: "";
	right: 0.3rem;
	top: 0.5rem;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235e5873' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
	color: #6e6b7b;
	width: 14px;
	height: 14px;
	content: "";
	right: 0.3rem;
	top: 1.3rem;
}

div.dataTables_wrapper .dt-button-collection {
	background-color: #fff;
}

div.dataTables_wrapper .dt-button-collection > div[role="menu"] {
	text-align: left;
	box-shadow: 0px 5px 16px -8px;
	min-width: 8rem;
}

div.dataTables_wrapper .dt-button-collection [class*="buttons-"]:focus {
	outline: 0;
}

table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
	line-height: 0.8em;
}

@media screen and (max-width: 1399.98px) {
	table.dataTable.table-responsive {
		display: block;
	}
}

.modal.dtr-bs-modal .modal-body {
	padding: 0;
}

.modal.dtr-bs-modal .table tr:last-child > td {
	border-bottom: 0;
}

div.dataTables_wrapper div.dataTables_filter label,
div.dataTables_wrapper div.dataTables_length label {
	margin-top: 1rem;
	margin-bottom: 0.5rem;
}

div.dataTables_wrapper div.dataTables_filter select,
div.dataTables_wrapper div.dataTables_length select {
	background-position: calc(100% - 3px) 11px, calc(100% - 20px) 13px, 100% 0;
	width: 5rem;
	margin: 0 0.5rem;
}

div.dataTables_wrapper div.dataTables_filter input {
	margin-left: 0.75rem;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
	margin-top: 1rem;
	margin-bottom: 1.5rem;
    justify-content: center;
}

div.dataTables_wrapper .dataTables_info {
	padding-bottom: 1.25rem !important;
	color: #b9b9c3;
}

tr.group {
	background-color: #fafafc;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:not([id$="_ellipsis"]) {
    display: none !important;
}

@media only screen and (max-width: 992px) {
	table.dataTable.table-responsive.datatables-ajax {
		display: block;
	}
}

@media only screen and (max-width: 768px) {
	div.dataTables_wrapper div.dataTables_paginate ul.pagination {
		justify-content: center;
	}
	div.dataTables_wrapper div.dataTables_info {
		white-space: inherit;
	}
	div.dt-buttons {
		justify-content: center;
		margin-top: 1rem;
	}
	div.dt-buttons button {
		margin-bottom: 0.5rem;
	}
}

@media (max-width: 575.98px) {
	.dtr-bs-modal .modal-body {
		padding-left: 0;
		padding-right: 0;
		overflow-x: scroll;
	}
	.dtr-bs-modal .table.dtr-details {
		margin: 0 auto 1rem;
	}
	.dtr-bs-modal .table.dtr-details td {
		padding-left: 0;
		padding-right: 0;
	}
	.dtr-bs-modal .table.dtr-details tr td:first-child {
		padding-left: 0.75rem;
	}
	div.dataTables_wrapper {
		overflow: scroll;
	}
}

/* =*=*=*=*=*=*=*=*=*=*=*= [E] datatables =*=*=*=*=*=*=*=*=*=*=*= */

/* =*=*=*=*=*=*=*=*=*=*=*= [S] 주요 경력  =*=*=*=*=*=*=*=*=*=*=*= */
.career-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.career-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.career-date {
    flex: 0.3;  /* 날짜 입력란 크기 축소 */
    min-width: 120px;
    height: 40px;
}
.career-content {
    flex: 1;  /* 경력 내용 넓게 */
    height: 40px;
}
.career-row .btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.career-add-row {
    background-color: #e97730;
    border-color: #e97730;
    color: white;
}
.career-add-row:hover {
    background-color: #e66210;
    border-color: #e66210;
    color: white;
}
.career-remove-row {
    background-color: #353434;
    border-color: #353434;
    color: white;
}
.career-remove-row:hover {
    background-color: black;
    border-color: black;
    color: white;
}

span.add-career-text {
    font-size: 15px;
    cursor: pointer;
    font-weight: normal; /* 기본 상태 */
}

span.add-career-text:hover {
    font-weight: bold; /* 마우스 올리면 볼드 */
}

.sns-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sns-row {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;  /* 각 row가 가로 전체를 차지하도록 설정 */
}

.sns-select {
    flex: 0.3;  /* SNS select의 크기 축소 */
    min-width: 100px;  /* SNS select의 최소 크기 설정 */
    height: 40px;
    display: block;
    width: 100%;
    padding: 0.375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    border-radius: .375rem;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
}

.sns-url {
    flex: 1;  /* URL 입력란을 넓게 설정 */
    height: 40px;
    /* 최소 크기 설정 */
    /* min-width: 200px;   */
}

.sns-row .btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sns-add-row {
    background-color: #e97730;
    border-color: #e97730;
    color: white;
}

.sns-add-row:hover {
    background-color: #e66210;
    border-color: #e66210;
    color: white;
}

.sns-remove-row {
    background-color: #353434;
    border-color: #353434;
    color: white;
}

.sns-remove-row:hover {
    background-color: black;
    border-color: black;
    color: white;
}

span.add-sns-text {
    font-size: 15px;
    cursor: pointer;
    font-weight: normal;  /* 기본 상태 */
}

span.add-sns-text:hover {
    font-weight: bold;  /* 마우스 올리면 볼드 */
}

/* =*=*=*=*=*=*=*=*=*=*=*= [E] 주요 경력  =*=*=*=*=*=*=*=*=*=*=*= */


/* =*=*=*=*=*=*=*=*=*=*=*= [S] h4 텍스트 아래 언더바  =*=*=*=*=*=*=*=*=*=*=*= */
.main-title {
    height: 100%;
    border: none;
    padding: 20px 20px 0px 0px;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
}
.main-title h4 {
    position: relative;
    margin-bottom: 20px;
}
.main-title h4::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -12px;
    background-color: #e97730;
    width: 50px;
    height: 2px;
}
/* =*=*=*=*=*=*=*=*=*=*=*= [E] h4 텍스트 아래 언더바  =*=*=*=*=*=*=*=*=*=*=*= */

/* =*=*=*=*=*=*=*=*=*=*=*= [S] validation error span  =*=*=*=*=*=*=*=*=*=*=*= */
.validation-error-message {
    color: red; margin-left: 5px; margin-top: 4px;
}
/* =*=*=*=*=*=*=*=*=*=*=*= [E] validation error span  =*=*=*=*=*=*=*=*=*=*=*= */

