/**
	member skin css
*/
body, html {
        margin: 0; padding: 0; width: 100%; height: 100%;
        background: radial-gradient(circle at center, #2c3e50 0%, #000000 100%);
        overflow: hidden; font-family: 'Noto Sans KR', sans-serif;
    }
a {
    color: rgba(255, 223, 128, 0.4) !important;
}
.access .panel-footer{overflow:hidden;}
.search form{padding:5px;}
.search textarea {padding: 15px;background: #f7f7f7;font-size: 12px;}
.final .btn_final{margin-top:20px; text-align:center;}
.panel-default>.panel-heading {
    background-image: none !important;
    background-color: transparent!important;
    border-color: transparent!important;
}
.form-group {
    margin-bottom: 0px !important;
}
.bottom-line {
    border-bottom: 1px solid #e5e5e5;
}
.container h3 {
    margin-bottom: 10px !important;
    color: #FFD700; !important; 
}
.top-margins {
    margin-top: 15px !important;
}
.top-margin-double {
    margin-top: 25px !important;
}
.text-middle {
    display: flex;
    align-items: center;
    height: 45px;
}
.text-centers {
    text-align: center;
}
.btn-next {
    width: 100%;
    font-size: 1.5rem;
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
    background-image: none;
}
.btn-cert {
    width: 50%;
    font-size: 1.2rem;
    color: #fff;
    background-color: #043866;
    border-color: #013059;
    background-image: none;
}

.input-height {
    height: 40px !important;
}
.wdhl-card {
    width: 95%;              /* 모바일에서 양옆 여백 확보 */
    max-width: 400px;
    margin: 0 auto !important; /* 가로 중앙 정렬 */
    /* 기존 디자인 스타일 유지... */
    background: linear-gradient(145deg, #1e1e1e 0%, #0a0a0a 100%);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(255, 223, 128, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.wdhl-card::before {
    content: "";
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background-image: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom right, black, transparent);
    pointer-events: none;
}
.padding-minus{
    padding-right: 10px !important;
    padding-left: 10px !important;
}
.settings-left {
    display: flex;
    align-items: center;
    gap: 12px; /* 체크박스와 텍스트 사이 간격 */
}
.settings-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.settings-name {
        font-size: 14px;
        font-weight: 400;
        color: #B1B1B1;
    }
.settings-item {
        display: flex;
        justify-content: space-between; /* 왼쪽(left)과 오른쪽(icon)을 양 끝으로 배치 */
        align-items: center; /* 세로 중앙 정렬 */
        padding: 14px 12px;
        cursor: pointer;
        /* ... 기존 스타일 유지 ... */
    }
    .settings-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding: 0 10px;
    }
.settings-title {
        font-size: 20px;
        font-weight: 700;
        color: #FFD700; !important; 
        margin-bottom: 0 !important; 
    }
.btn-back {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a919e;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back i {
    font-size: 11px;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 215, 0, 0.3); /* 살짝 골드 빛 보더 */
}

/* 모바일 클릭 효과 */
.btn-back:active {
    transform: scale(0.95);
}
.checkbox-container {
        margin-bottom: 0 !important; 
        display: flex;
        align-items: center;
    }

/* 체크박스 내부 checkmark의 마진을 0으로 조정하여 gap으로 간격 제어 */
.checkmark {
    margin-right: 0 !important; 
}
/* 화살표 아이콘 색상 및 크기 보정 */
.settings-link-icon {
    color: #8a919e;
    font-size: 18px;
    margin-left: auto; /* 혹시 모를 정렬 어긋남 방지 */
}
/* 제목 및 문구 스타일 */
.terms-welcome {
    color: #8a919e;
    font-size: 12px;
    margin: -20px 0 30px 10px;
}
.terms-content {
    color: #FFFFFF;
    font-size: 14px;
    margin: 10px 0 30px 10px;
}
/* 전체 동의 박스 */
.all-agree-box {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
}

/* 커스텀 체크박스 디자인 */
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input { display: none; }

.checkmark {
    height: 20px;
    width: 20px;
    background-color: #2c3036;
    border: 1px solid #454a52;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #FFD700;
    border-color: #FFD700;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px; top: 2px;
    width: 6px; height: 11px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after { display: block; }

.agree-text { margin-left: 10px; color: #FFD700; font-weight: 700; font-size: 16px; }

/* 다음 버튼 골드 스타일 */
.btn-gold-action {
    width: 100%;
    background: linear-gradient(145deg, #FFD700, #b89b00);
    border: none;
    color: #000;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.wdhl-asset-list {
        /* 1. 터치 동작을 브라우저 기본 스크롤에 맡김 (중요) */
        touch-action: auto !important;
        
        /* 2. 다른 투명 요소에 터치를 뺏기지 않도록 우선순위 상향 */
        position: relative;
        z-index: 99;

        /* 3. 스크롤 영역 명시 */
        overflow-y: scroll !important; 
        -webkit-overflow-scrolling: touch !important;
        
        /* 4. 부모 높이에 따라 조절되도록 높이 제한 */
        max-height: 60vh;  /*화면 높이의 60%로 제한 */
        /* 기존 스타일 유지... */
        margin: 10px auto;
    
        /*padding: 10px 20px;*/
        padding-bottom: 200px;
        /* 1. 반투명 배경 (블랙 70% 정도) */
        background-color: rgba(0, 0, 0, 0.7); 
        
        /* 2. 배경 블러 처리 (뒤가 뿌옇게 비치는 핵심 효과) */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* 사파리 호환성 */

        /* 3. 테두리에 살짝 광택을 주어 입체감 부여 */
        /*border: 1px solid rgba(255, 215, 0, 0.15); 
        border-radius: 20px 20px 0 0; */
        font-family: 'Inter', sans-serif;
    }
/* 스크롤바 전체 너비 */
.wdhl-asset-list::-webkit-scrollbar {
    width: 4px;
}
/* 스크롤바 막대 */
.wdhl-asset-list::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3); /* 골드 투명도 */
    border-radius: 10px;
}
.text-iconcolor{
    color: #EFEFEF;
}
.receive_email{
    color: #EFEFEF;
}