.pointer{cursor:pointer;}
/* SNS 추가/삭제 버튼 스타일 */
.add_sns {
    margin-left: 10px;
    padding: 2px 6px;
    font-size: 12px;
}
.remove_sns {
    margin-left: 10px;
    padding: 2px 6px;
    font-size: 12px;
}
.sns_type_select{
    width:15%;
}
.sns_input{
    width:250px;
    margin-left: 5px;
}
.sns_icon {
    width:35px; 
    height:35px; 
    vertical-align:middle; 
    margin-right:5px;
}

.datepicker-user {
    width: 150px; 
    padding: 8px; 
    margin: 0 5px; 
    cursor: pointer; 
    text-align: center; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    caret-color: transparent;
    background-color: white;
}

/* 서포터즈 정산내역 */
/* 헤더 영역 */
.settlement_header { margin-bottom: 40px; }
.settlement_header h2 { font-size: 28px; font-weight: bold; color: #333; margin-bottom: 10px; }
.settlement_header p { font-size: 14px; color: #666; line-height: 1.6; }
.settlement_header p strong { color: #ed1c24; }

/* 정산 요약 카드 */
.settlement_summary { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px; 
    margin-bottom: 40px; 
}
.summary_card { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    padding: 25px; 
    border-radius: 12px; 
    color: #fff; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}
.summary_card.blue { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.summary_card.purple { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.summary_card.green { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.summary_card .label { font-size: 13px; opacity: 0.9; margin-bottom: 8px; }
.summary_card .value { font-size: 26px; font-weight: bold; }
.summary_card .sub { font-size: 12px; opacity: 0.8; margin-top: 5px; }

/* 정산 내역 리스트 */
.settlement_list { margin-top: 30px; }
.settlement_item { 
    background: #fff; 
    border: 1px solid #e5e5e5; 
    border-radius: 8px; 
    padding: 30px; 
    margin-bottom: 20px; 
    transition: all 0.3s; 
}

/* 정산 아이템 헤더 */
.settlement_item_header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-bottom: 20px; 
    border-bottom: 2px solid #f5f5f5; 
    margin-bottom: 20px; 
}
.settlement_month { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}
.settlement_month .month_badge { 
    background: #343f5c; 
    color: #fff; 
    padding: 8px 20px; 
    border-radius: 20px; 
    font-size: 16px; 
    font-weight: bold; 
}
.settlement_month .arrow { font-size: 20px; color: #999; }
.settlement_month .payment_info { font-size: 14px; color: #666; }
.settlement_month .payment_info strong { color: #ed1c24; }

.settlement_status { 
    display: inline-block; 
    padding: 8px 20px; 
    border-radius: 20px; 
    font-size: 13px; 
    font-weight: bold; 
}
.settlement_status.pending { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
.settlement_status.completed { background: #d4edda; color: #155724; border: 1px solid #28a745; }

/* 정산 금액 정보 */
.settlement_amounts { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin-bottom: 20px; 
}
.amount_box { 
    background: #f8f9fa; 
    padding: 20px; 
    border-radius: 8px; 
    border-left: 4px solid #dee2e6; 
}
.amount_box.total { border-left-color: #343f5c; }
.amount_box.commission { border-left-color: #ed1c24; }
.amount_box.final { border-left-color: #28a745; background: #f0f9ff; }
.amount_box .label { font-size: 13px; color: #666; margin-bottom: 8px; }
.amount_box .value { font-size: 22px; font-weight: bold; color: #333; }
.amount_box .unit { font-size: 14px; font-weight: normal; margin-left: 3px; }
.amount_box .sub_info { font-size: 12px; color: #999; margin-top: 5px; }

/* 정산 상세 정보 */
.settlement_details { 
    background: #fafafa; 
    padding: 15px 20px; 
    border-radius: 6px; 
    margin-top: 15px; 
}
.settlement_details .detail_row { 
    display: flex; 
    justify-content: space-between; 
    padding: 8px 0; 
    font-size: 13px; 
}
.settlement_details .detail_row .label { color: #666; }
.settlement_details .detail_row .value { color: #333; font-weight: 500; }
.settlement_details .note { 
    background: #fff; 
    padding: 12px; 
    border-radius: 4px; 
    margin-top: 10px; 
    border: 1px solid #e5e5e5; 
    font-size: 13px; 
    color: #555; 
    line-height: 1.6; 
}
.settlement_details .note strong { color: #ed1c24; }

/* 빈 상태 */
.empty_state { 
    text-align: center; 
    padding: 80px 20px; 
}
.empty_state .icon { 
    font-size: 60px; 
    color: #ddd; 
    margin-bottom: 20px; 
}
.empty_state h3 { 
    font-size: 20px; 
    color: #666; 
    margin-bottom: 10px; 
}
.empty_state p { 
    font-size: 14px; 
    color: #999; 
    line-height: 1.6; 
}

/* 정보 박스 */
.info_box { 
    background: #f8f9fa; 
    border-left: 4px solid #343f5c; 
    padding: 20px; 
    margin-bottom: 30px; 
    border-radius: 4px; 
}
.info_box h4 { 
    font-size: 15px; 
    color: #333; 
    margin-bottom: 12px; 
    font-weight: bold; 
}
.info_box ul { 
    list-style: none; 
    padding: 0; 
}
.info_box ul li { 
    font-size: 13px; 
    color: #666; 
    line-height: 2; 
    padding-left: 15px; 
    position: relative; 
}
.info_box ul li:before { 
    content: '•'; 
    position: absolute; 
    left: 0; 
    color: #ed1c24; 
}
/* 월 선택 UI */
.month_selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #343f5c;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.month_btn {
    min-width: 110px;
    height: 45px;
    padding: 0 20px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.month_btn .btn_icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.month_btn .btn_text {
    font-size: 14px;
    letter-spacing: -0.5px;
}

.month_btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.month_btn.prev:hover:not(:disabled) .btn_icon {
    transform: translateX(-3px);
}

.month_btn.next:hover:not(:disabled) .btn_icon {
    transform: translateX(3px);
}

.month_btn:disabled {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}

.month_display {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.month_text {
    font-size: 20px;
    font-weight: bold;
    color: #343f5c;
}

.month_picker_input {
    position: relative;
    cursor: pointer;
}

.month_picker_input input {
    width: 170px;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    color: #343f5c;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.month_picker_input input:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.month_picker_input input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: #fff;
}

.settlement_badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}
.settlement_badge.pending {
    background: #fff3cd;
    color: #856404;
}
.settlement_badge.completed {
    background: #d4edda;
    color: #155724;
}
.amount_input {
    width: 70px;
    text-align: right;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.note_input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.month_selector_admin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}
.month_btn_admin {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}
.month_display_admin {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #343f5c;
    text-align: center;
}

/* 타임세일 스타일 */
.time_wrap{padding: 30px 0px;}

/* 타임세일 섹션 스타일 */
.timesale_section{
	width: 100%;
	margin-bottom: 50px;
	list-style: none;
}

/* 타임세일 헤더 스타일 */
.timesale_header{
	background: #ff691f;
	padding: 30px 20px;
	margin-bottom: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.timesale_title{
	font-size: 28px;
	margin: 0 0 15px 0;
	font-weight: bold;
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timesale_countdown{
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.timesale_countdown b{
	display: inline-block;
	margin: 0 3px;
	font-size: 24px;
	font-weight: bold;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.2);
	padding: 5px 10px;
	border-radius: 5px;
	min-width: 40px;
	text-align: center;
}

.timesale_countdown .color_y{
	color: #ffeb3b;
	background: rgba(255, 235, 59, 0.3);
}

.timesale_countdown span{
	margin: 0 2px;
}