GNU/skin/board/daemon_trading_upbit/style.write.css
@charset "utf-8";

body { background: #0e1628 !important; }

/* 블랙 UI 테마 - 강화된 다크 디자인 */
#Write {
    background: #0a0a0a;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 50px 30px;;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid #1a1a1a;
    margin:50px 20px !important;
}

#Write .Block {
    background: #151515;
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

#Write .Block:hover {
    border-color: #3a3a3a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#Write .Block .List ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#Write .Block .List ul li {
    display: inline-block;
    margin: 5px;
    color: #d0d0d0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

#Write .Block .List ul li input[type="text"],
#Write .Block .List ul li select {
    background: #0f0f0f;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.05);
}

#Write .Block .List ul li input[type="text"]:focus,
#Write .Block .List ul li select:focus {
    outline: none;
    border-color: #3a8afd;
    background: #151515;
    box-shadow: 0 0 0 3px rgba(58, 138, 253, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 20px rgba(58, 138, 253, 0.2);
    transform: translateY(-1px);
}

#Write .Block .List ul li select option {
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 8px;
}

#Write .Block .List ul li select option:hover {
    background: #1a1a1a;
}

/* 라벨 버튼 디자인 - 체크박스 span 제외 */
#Write .Block .List ul li > span:not(.chk_box span):not(label span),
#Write .Block .Coin-Options ul li > span:not(.chk_box span):not(label span) {
    display: inline-block;
    background: #1a1a1a;
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

#Write .Block .List ul li > span:not(.chk_box span):not(label span):hover,
#Write .Block .Coin-Options ul li > span:not(.chk_box span):not(label span):hover {
    background: #252525;
    border-color: #3a8afd;
    color: #fff;
}

/* 분류, 코인 라벨 특별 스타일 */
#Write .Block .List ul li > span.label-primary {
    background: #1a1a1a;
    border-color: #4a9afd;
    color: #fff;
}

/* 매수 라벨 스타일 - 연한 초록색 */
#Write .Block .Coin-Options .Left ul li > span.label-buy {
    background: #1a1a1a;
    border-color: #81c784;
    color: #fff;
}

/* 매도 라벨 스타일 - 연한 빨간색/분홍색 */
#Write .Block .Coin-Options .Right ul li > span.label-sell {
    background: #1a1a1a;
    border-color: #ef5350;
    color: #fff;
}

/* 쓰기 페이지 기본 옵션*/
#Write .Line-HY { 
    float: right; 
    height: 40px;
    background: #0a0a0a;
    background: linear-gradient(90deg, #0a0a0a 0%, #151515 100%);
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(255, 255, 255, 0.03);
    padding: 0 10px;
}
#Write .Line-HY .chk_box { 
    float:left;
    padding:6px 10px 0px 10px;
}
    
#Write  .Line-HY .chk_box label {
    display:inline-block; 
    
}
#Write  .Line-HY .chk_box label span {
    display:inline-block; 
    margin-right:5px;
}

#Write .Block .Coin-Options {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

#Write .Block .Coin-Options .Left,
#Write .Block .Coin-Options .Right {
    flex: 1;
    background: #121212;
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

#Write .Block .Coin-Options .Left:hover {
    border-color: #00ff62;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#Write .Block .Coin-Options .Right:hover {
    border-color: #ff4d17;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 메시지 박스 스타일 */
#Write .Block .Coin-Options .Message-Box {
    flex: 1;
    background: #121212;
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

#Write .Block .Coin-Options .Message-Box .message-header {
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#Write .Block .Coin-Options .Message-Box .message-header h4 {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

#Write .Block .Coin-Options .Message-Box .message-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#Write .Block .Coin-Options .Message-Box .message-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #0a0a0a;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#Write .Block .Coin-Options .Message-Box .message-item:hover {
    border-color: #3a3a3a;
    background: #151515;
}

#Write .Block .Coin-Options .Message-Box .message-label {
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 500;
}

#Write .Block .Coin-Options .Message-Box .message-value {
    color: #3a8afd;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(58, 138, 253, 0.3);
    transition: all 0.3s ease;
}

#Write .Block .Coin-Options .Message-Box .message-value.error-value {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

#Write .Block .Coin-Options .Message-Box .message-alert {
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#Write .Block .Coin-Options .Message-Box .message-alert.alert-success {
    background: rgba(58, 138, 253, 0.1);
    border: 1px solid rgba(58, 138, 253, 0.3);
    color: #3a8afd;
}

#Write .Block .Coin-Options .Message-Box .message-alert.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

#Write .Block .Coin-Options .Message-Box .message-alert.alert-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

/* 거래 정보 섹션 스타일 */
#Write .Block .Coin-Options .Message-Box .message-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
}

#Write .Block .Coin-Options .Message-Box .message-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#Write .Block .Coin-Options .Message-Box .message-section-title {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a2a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 기본 정보 리스트 */
#Write .Block .Coin-Options .Message-Box .message-basic-list {
    margin-bottom: 12px;
}

#Write .Block .Coin-Options .Message-Box .message-basic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 6px;
    background: #0f0f0f;
    background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s ease;
}

#Write .Block .Coin-Options .Message-Box .message-basic-item:hover {
    border-color: #3a3a3a;
    background: #151515;
    transform: translateX(2px);
}

#Write .Block .Coin-Options .Message-Box .message-basic-label {
    color: #b0b0b0;
    font-weight: 500;
    font-size: 12px;
}

#Write .Block .Coin-Options .Message-Box .message-basic-value {
    color: #3a8afd;
    font-weight: 600;
    font-size: 12px;
    text-align: right;
    word-break: break-all;
    max-width: 60%;
}

/* 상세 정보 리스트 */
#Write .Block .Coin-Options .Message-Box .message-details-list {
    margin-bottom: 12px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

#Write .Block .Coin-Options .Message-Box .message-details-list::-webkit-scrollbar {
    width: 6px;
}

#Write .Block .Coin-Options .Message-Box .message-details-list::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 3px;
}

#Write .Block .Coin-Options .Message-Box .message-details-list::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 3px;
}

#Write .Block .Coin-Options .Message-Box .message-details-list::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* 상세 정보 아이템 */
#Write .Block .Coin-Options .Message-Box .message-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 6px;
    background: #0f0f0f;
    background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.3s ease;
}

#Write .Block .Coin-Options .Message-Box .message-detail-item:hover {
    border-color: #3a3a3a;
    background: #151515;
    transform: translateX(2px);
}

#Write .Block .Coin-Options .Message-Box .message-detail-label {
    color: #b0b0b0;
    font-weight: 500;
    font-size: 11px;
}

#Write .Block .Coin-Options .Message-Box .message-detail-value {
    font-weight: 600;
    font-size: 12px;
    text-align: right;
}

/* 매수 상세 정보 색상 */
#Write .Block .Coin-Options .Message-Box .message-detail-value-buy {
    color: #81c784;
}

#Write .Block .Coin-Options .Message-Box .message-detail-item.message-detail-buy:hover {
    border-color: #66bb6a;
}

/* 매도 상세 정보 색상 */
#Write .Block .Coin-Options .Message-Box .message-detail-value-sell {
    color: #ef5350;
}

#Write .Block .Coin-Options .Message-Box .message-detail-item.message-detail-sell:hover {
    border-color: #f44336;
}

/* 빈 상태 메시지 */
#Write .Block .Coin-Options .Message-Box .message-detail-empty {
    padding: 10px;
    text-align: center;
    color: #666;
    font-size: 12px;
    font-style: italic;
    background: #0a0a0a;
    border: 1px dashed #2a2a2a;
    border-radius: 4px;
}

/* 총합 아이템 스타일 */
#Write .Block .Coin-Options .Message-Box .message-item.message-total {
    background: #151515;
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #3a3a3a;
    font-weight: 600;
    margin-top: 8px;
}

#Write .Block .Coin-Options .Message-Box .message-item.message-total .message-label {
    color: #d0d0d0;
    font-size: 13px;
}

#Write .Block .Coin-Options .Message-Box .message-item.message-total .message-value {
    color: #3a8afd;
    font-size: 15px;
    font-weight: 700;
}

#Write .Block .Coin-Options .Left ul,
#Write .Block .Coin-Options .Right ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

/* 매수/매도 타이틀 디자인 */
#Write .Block .Coin-Options .Left ul:first-child li,
#Write .Block .Coin-Options .Right ul:first-child li {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

#Write .Block .Coin-Options .Left ul:first-child li {
    background: #121212;
    color: #fff;
    border-bottom: 1px solid #66bb6a;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#Write .Block .Coin-Options .Right ul:first-child li {
    background: #121212;
    color: #fff;
    border-bottom: 1px solid #f44336;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#Write .Block .Coin-Options .Left ul li,
#Write .Block .Coin-Options .Right ul li {
    display: inline-block;
    margin: 5px;
    color: #d0d0d0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

#Write .Block .Coin-Options .Left ul li input[type="text"],
#Write .Block .Coin-Options .Right ul li input[type="text"] {
    background: #0a0a0a;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    width: 90px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.05);
}

#Write .Block .Coin-Options .Left ul li input[type="text"]:focus,
#Write .Block .Coin-Options .Right ul li input[type="text"]:focus {
    border-color: #3a8afd;
    box-shadow: 0 0 0 2px rgba(58, 138, 253, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* 숨겨진 옵션 스타일 */
#Write .Block .Coin-Options .buy-option-item.hidden-option,
#Write .Block .Coin-Options .sell-option-item.hidden-option {
    display: none;
}

/* 추가 버튼 스타일 */
#Write .Block .Coin-Options .add-more-btn-wrapper {
    margin-top: 15px;
    text-align: center;
    padding: 10px 0;
}

#Write .Block .Coin-Options .add-more-btn {
    background: #1a1a1a;
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 300px;
}

#Write .Block .Coin-Options .add-more-btn:hover {
    background: #252525;
    background: linear-gradient(180deg, #252525 0%, #2f2f2f 100%);
    border-color: #3a8afd;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 15px rgba(58, 138, 253, 0.3);
    transform: translateY(-2px);
}

#Write .Block .Coin-Options .add-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 글 내용 입력 폼 토글 버튼 */
#Write .Content-Toggle {
    margin-bottom: 15px;
}

#Write .Content-Toggle .content-toggle-btn {
    width: 100%;
    background: #151515;
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

#Write .Content-Toggle .content-toggle-btn:hover {
    background: #1a1a1a;
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    border-color: #3a8afd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

#Write .Content-Toggle .content-toggle-btn .toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-right: 10px;
    color: #3a8afd;
}

#Write .Content-Toggle .content-toggle-btn .toggle-text {
    flex: 1;
}

#Write .Content {
    background: #151515;
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
}

#Write .Content.collapsed {
    max-height: 0;
    padding: 0 20px;
    margin-bottom: 0;
    border: none;
    opacity: 0;
}

#Write .Content #char_count_desc {
    color: #b0b0b0;
    margin-bottom: 10px;
}

#Write .Content #char_count_desc strong {
    color: #3a8afd;
}

#Write .Content #char_count_wrap {
    color: #b0b0b0;
    margin-top: 10px;
    text-align: right;
}

#Write .Content #char_count {
    color: #3a8afd;
    font-weight: bold;
}

/* 글 내용 입력 폼 블랙 디자인 */
#Write .Content textarea,
#Write .Content .wr_content textarea {
    background: #0a0a0a;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 100%;
    min-height: 300px;
    resize: vertical;
}

#Write .Content textarea:focus,
#Write .Content .wr_content textarea:focus {
    outline: none;
    border-color: #3a8afd;
    background: #151515;
    box-shadow: 0 0 0 3px rgba(58, 138, 253, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 20px rgba(58, 138, 253, 0.2);
}

#Write .Content textarea::placeholder {
    color: #666;
}

/* 에디터 iframe 블랙 디자인 */
#Write .Content iframe,
#Write .Content .wr_content iframe {
    background: #0a0a0a !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 6px;
}

/* 에디터 툴바 블랙 디자인 */
#Write .Content .editor_toolbar,
#Write .Content .btn_toolbar,
#Write .Content .toolbar {
    background: #151515 !important;
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%) !important;
    border: 1px solid #2a2a2a !important;
    border-bottom: none !important;
    border-radius: 6px 6px 0 0;
    padding: 8px;
}

#Write .Content .editor_toolbar button,
#Write .Content .btn_toolbar button,
#Write .Content .toolbar button {
    background: #0f0f0f !important;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%) !important;
    color: #e0e0e0 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 4px;
    padding: 6px 12px;
    margin: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#Write .Content .editor_toolbar button:hover,
#Write .Content .btn_toolbar button:hover,
#Write .Content .toolbar button:hover {
    background: #1a1a1a !important;
    border-color: #3a8afd !important;
    box-shadow: 0 0 8px rgba(58, 138, 253, 0.3);
}

/* 에디터 본문 영역 */
#Write .Content .editor_body,
#Write .Content .editor_content {
    background: #0a0a0a !important;
    color: #e0e0e0 !important;
    border: 1px solid #2a2a2a !important;
    border-top: none !important;
    border-radius: 0 0 6px 6px;
    padding: 15px;
    min-height: 300px;
}

/* SMEditor 스타일 */
#Write .Content .smarteditor,
#Write .Content #smarteditor {
    background: #0a0a0a !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 6px;
}

#Write .Content .smarteditor .toolbar,
#Write .Content #smarteditor .toolbar {
    background: #151515 !important;
    border-bottom: 1px solid #2a2a2a !important;
}

#Write .Content .smarteditor .editor,
#Write .Content #smarteditor .editor {
    background: #0a0a0a !important;
    color: #e0e0e0 !important;
}

/* CKEditor 스타일 */
#Write .Content .cke {
    background: #151515 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 6px;
}

#Write .Content .cke_top {
    background: #151515 !important;
    border-bottom: 1px solid #2a2a2a !important;
}

#Write .Content .cke_contents {
    background: #0a0a0a !important;
    color: #e0e0e0 !important;
}

#Write .Content .cke_button {
    background: #0f0f0f !important;
    border: 1px solid #2a2a2a !important;
}

#Write .Content .cke_button:hover {
    background: #1a1a1a !important;
    border-color: #3a8afd !important;
}

/* 네이버 스마트에디터2 */
#Write .Content .se2_input_area {
    background: #0a0a0a !important;
    color: #e0e0e0 !important;
    border: 1px solid #2a2a2a !important;
}

#Write .Content .se2_tool {
    background: #151515 !important;
    border-bottom: 1px solid #2a2a2a !important;
}

#Write .Button {
    margin-top: 30px;
    margin-bottom: 20px;
}

#Write .Button .button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

#Write .Button .btn {
    min-width: 140px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    box-sizing: border-box;
}

#Write .Button .btn_cancel {
    background: #1a1a1a;
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#Write .Button .btn_cancel:hover {
    background: #252525;
    background: linear-gradient(180deg, #252525 0%, #2f2f2f 100%);
    color: #fff;
    border-color: #3a3a3a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

#Write .Button .btn_cancel:active {
    transform: translateY(0);
}

#Write .Button .btn_submit {
    background: linear-gradient(135deg, #3a8afd 0%, #2a7aed 100%);
    color: #fff;
    border: 1px solid #4a9afd;
    box-shadow: 0 4px 16px rgba(58, 138, 253, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#Write .Button .btn_submit:hover {
    background: linear-gradient(135deg, #4a9afd 0%, #3a8afd 100%);
    box-shadow: 0 6px 20px rgba(58, 138, 253, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 30px rgba(58, 138, 253, 0.3);
    transform: translateY(-2px);
}

#Write .Button .btn_submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(58, 138, 253, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#Write .Button .btn_submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#Write .Subject-Pop {
    background: #151515;
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#Write .Subject-Pop div {
    color: #e0e0e0;
}

#Write .Subject-Pop .Button2-BOb {
    background: #1a1a1a;
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#Write .Subject-Pop .Button2-BOb:hover {
    background: #252525;
    background: linear-gradient(180deg, #252525 0%, #2f2f2f 100%);
    border-color: #3a3a3a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

#Write .Block .List ul li.Help label {
    color: #919191;
    font-size: 10px;
}

#Write .chk_box label {
    color: #d0d0d0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

/* Line-HY 외부의 chk_box span 스타일 (Line-HY의 span은 142줄에서 별도 정의) */
#Write .Block .chk_box span {
    display:inline-block;
    margin-left:10px;
}

#Write .chk_box input[type="checkbox"] + label span {
    background: #0a0a0a;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border: 1px solid #2a2a2a;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

#Write .chk_box input[type="checkbox"]:checked + label {
    color: #3a8afd;
}

#Write .chk_box input[type="checkbox"]:checked + label span {
    background: linear-gradient(135deg, #3a8afd 0%, #2a7aed 100%);
    border-color: #4a9afd;
    box-shadow: 0 0 10px rgba(58, 138, 253, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ============================================
   View 페이지 블랙 디자인 스타일
   ============================================ */

#View {
    background: #0a0a0a;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid #1a1a1a;
    margin: 20px auto;
}

/* 헤더 영역 */
#View .view-header {
    border-bottom: 2px solid #327ceb;
    margin-bottom: 30px;
}

#View .view-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

#View .view-category {
    display: inline-block;
    background: linear-gradient(135deg, #3a8afd 0%, #2a7aed 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 10px;
    box-shadow: 0 2px 8px rgba(58, 138, 253, 0.3);
}

#View .view-subject {
    color: #f08307;
}

#View .view-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #b0b0b0;
}

#View .view-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

#View .view-meta strong {
    color: #e0e0e0;
    font-weight: 600;
}

/* 액션 버튼 (하단만) */
#View .view-bottom-actions {
    margin: 20px 0 0 0;
}

#View .action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#View .action-buttons li {
    margin: 0;
}

#View .action-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 8px 16px;
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    color: #e0e0e0;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#View .action-buttons a:hover {
    background: linear-gradient(180deg, #1f1f1f 0%, #252525 100%);
    border-color: #3a8afd;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(58, 138, 253, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* 섹션 제목 */
#View .section-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #2a2a2a;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 코인 정보 섹션 */
#View .view-coin-info {
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#View .coin-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

#View .info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#View .info-item:hover {
    border-color: #3a8afd;
    box-shadow: 0 0 15px rgba(58, 138, 253, 0.2);
}

#View .info-label {
    font-size: 12px;
    color: #919191;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#View .info-value {
    font-size: 16px;
    color: #e0e0e0;
    font-weight: 600;
}

/* 매수/매도 정보 섹션 */
#View .view-trading-info {
    margin-bottom: 30px;
}

#View .trading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

#View .trading-section {
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}


#View .trading-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #2a2a2a;
}

#View .buy-title {
    color: #4caf50;
}

#View .sell-title {
    color: #f44336;
}


#View .trading-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#View .trading-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#View .trading-item:hover {
    border-color: #3a3a3a;
    background: #0f0f0f;
}


#View .trading-number {
    font-size: 14px;
    font-weight: 700;
    color: #919191;
    min-width: 70px;
}

#View .trading-percent {
    font-size: 16px;
    font-weight: 600;
    color: #3a8afd;
    min-width: 80px;
}

#View .trading-amount {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
    flex: 1;
    text-align: right;
}

#View .trading-empty {
    padding: 30px;
    text-align: center;
    color: #919191;
    font-size: 14px;
    background: #0a0a0a;
    border: 1px dashed #2a2a2a;
    border-radius: 8px;
}

#View .trading-total {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 700;
}

#View .buy-total {
    border-color: #4caf50;
}

#View .sell-total {
    border-color: #f44336;
}

#View .total-label {
    font-size: 16px;
    color: #ffffff;
    min-width: 70px;
}

#View .total-percent {
    font-size: 18px;
    color: #3a8afd;
    min-width: 80px;
}

#View .total-amount {
    font-size: 18px;
    color: #e0e0e0;
    flex: 1;
    text-align: right;
}

/* 본문 내용 */
#View .view-content {
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#View .content-wrapper {
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 15px;
}

#View .content-text {
    word-break: break-word;
}

#View .content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

#View .view-images {
    margin-bottom: 20px;
}

#View .signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
    color: #919191;
    font-size: 13px;
}

/* 추천/비추천 */
#View .view-vote {
    margin-bottom: 30px;
}

#View .vote-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

#View .vote-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#View .vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#View .vote-good {
    border-color: #4caf50;
}

#View .vote-good:hover {
    background: linear-gradient(180deg, #1f3f1f 0%, #2f4f2f 100%);
    border-color: #5cbf5c;
    color: #4caf50;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

#View .vote-nogood {
    border-color: #f44336;
}

#View .vote-nogood:hover {
    background: linear-gradient(180deg, #3f1f1f 0%, #4f2f2f 100%);
    border-color: #ff5555;
    color: #f44336;
    box-shadow: 0 4px 16px rgba(244, 67, 54, 0.3);
}


#View .vote-btn strong {
    font-size: 18px;
    margin-left: 5px;
}

/* 첨부파일 */
#View .view-files {
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#View .file-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#View .file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#View .file-list li:hover {
    border-color: #3a8afd;
    background: #0f0f0f;
}

#View .file-list a {
    display: flex;
    align-items: center;
    gap: 0;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    flex: 1;
}

#View .file-list a:hover {
    color: #3a8afd;
}

#View .file-size {
    color: #919191;
    font-size: 13px;
    margin-left: 8px;
}

#View .file-count {
    color: #919191;
    font-size: 13px;
}

/* 링크 */
#View .view-links {
    background: linear-gradient(180deg, #151515 0%, #1f1f1f 100%);
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#View .link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#View .link-list li {
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#View .link-list li:hover {
    border-color: #3a8afd;
    background: #0f0f0f;
}

#View .link-list a {
    display: flex;
    align-items: center;
    gap: 0;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    word-break: break-all;
}

#View .link-list a:hover {
    color: #3a8afd;
}

/* 동적 효과 애니메이션 */
#View .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#View .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 본문 텍스트 애니메이션 */
#View .fade-in-text {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#View .fade-in-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 매수/매도 항목 애니메이션 */
#View .trading-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}

#View .trading-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 호버 효과 강화 */
#View .trading-item:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 4px 12px rgba(58, 138, 253, 0.2);
    transition: all 0.3s ease;
}

#View .info-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#View .info-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(58, 138, 253, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 이미지 갤러리 애니메이션 */
#View .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

#View .image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
}

#View .image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(58, 138, 253, 0.4);
    z-index: 10;
    position: relative;
}

/* 리플 효과 */
#View .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

/* 버튼 클릭 효과 */
#View .action-buttons a,
#View .vote-btn {
    position: relative;
    overflow: hidden;
}

/* 섹션 등장 효과 */
#View section {
    animation: sectionFadeIn 0.6s ease-out;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 카드 플립 효과 (호버 시) */
#View .trading-section {
    perspective: 1000px;
}

#View .trading-item {
    transform-style: preserve-3d;
}

#View .trading-item:hover {
    transform: translateX(5px) rotateY(2deg);
}

/* 그라데이션 애니메이션 */
#View .view-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 스크롤 애니메이션 */
#View .info-item,
#View .trading-item {
    will-change: transform, opacity;
}

/* 부드러운 전환 효과 */
#View * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#View .action-buttons a:hover {
    transform: translateY(-2px);
}

/* 버튼 클릭 효과 */
#View .action-buttons a:active,
#View .vote-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    #View {
        padding: 20px;
    }
    
    #View .coin-info-grid {
        grid-template-columns: 1fr;
    }
    
    #View .trading-grid {
        grid-template-columns: 1fr;
    }
    
    #View .view-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    #View .action-buttons {
        flex-direction: column;
    }
    
    #View .action-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    /* 모바일에서 애니메이션 약간 조정 */
    #View .fade-in {
        transform: translateY(10px);
    }
    
    #View .trading-item {
        transform: translateX(-10px);
    }
}

/* ============================================
   List 페이지 블랙 디자인 스타일
   ============================================ */

#List {
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
    margin: 20px auto;
}

/* 카테고리 */
#List #bo_cate {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
}

#List #bo_cate h2 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #1a1a1a;
}

#List #bo_cate_ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#List #bo_cate_ul li {
    margin: 0;
}

#List #bo_cate_ul a {
    display: inline-block;
    padding: 6px 12px;
    background: #0a0a0a;
    color: #b0b0b0;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

#List #bo_cate_ul a:hover,
#List #bo_cate_ul a.on {
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #ffffff;
}

/* 상단 버튼 영역 */
#List #bo_btn_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
}

#List #bo_list_total {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #b0b0b0;
}

#List #bo_list_total .total-count {
    font-weight: 600;
    color: #ffffff;
}

#List #bo_list_total .page-info {
    color: #b0b0b0;
}

#List .btn_bo_user {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#List .btn_bo_user li {
    margin: 0;
}

#List .btn_bo_user .btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 6px 12px;
    background: #0a0a0a;
    color: #b0b0b0;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

#List .btn_bo_user .btn:hover {
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #ffffff;
}

/* 옵션 메뉴 */
#List .more_opt {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 150px;
    z-index: 99999;
    display: none;
}

#List .btn_more_opt {
    position: relative;
    z-index: 99998;
}

#List .more_opt li {
    margin: 0;
}

#List .more_opt button {
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    color: #e0e0e0;
    border: none;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#List .more_opt button:hover {
    background: #1f1f1f;
    color: #3a8afd;
}

/* 테이블 */
#List .tbl_wrap {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    overflow-x: auto;
}

#List .list-table {
    width: 100%;
    border-collapse: collapse;
    color: #e0e0e0;
    background: transparent;
    table-layout: auto;
}

#List .list-table caption {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 1px solid #1a1a1a;
}

#List .list-table thead {
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 10;
}

#List .list-table th {
    height: 60px;
    padding: 0 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #dddddd;
    white-space: nowrap;
    background: #0a0a0a;
    vertical-align: middle;
}

#List .list-table th.all_chk,
#List .list-table td.td_chk {
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    padding: 15px 5px;
}

#List .list-table th.col-criteria,
#List .list-table th.col-kind,
#List .list-table th.col-code,
#List .list-table th.col-daemon {
    color: #b0b0b0;
}

#List .list-table th a {
    color: #3a8afd;
    text-decoration: none;
    transition: color 0.3s ease;
}

#List .list-table th a:hover {
    color: #5a9aff;
}

#List .list-table tbody tr {
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.2s ease;
    cursor: pointer;
    background: #0f0f0f;
}

#List .list-table tbody tr:hover {
    background: #1a1a1a;
}

#List .list-table tbody tr.bo_notice {
    background: #0a0a0a;
    border-left: 2px solid #2a2a2a;
}

#List .list-table tbody tr.bo_notice:hover {
    background: #151515;
}

#List .list-table tbody tr.even {
    background: #0a0a0a;
}

#List .list-table tbody tr.even:hover {
    background: #151515;
}

#List .list-table td {
    height: 45px;
    padding: 0 10px;
    text-align: center;
    font-size: 13px;
    color: #b0b0b0;
    vertical-align: middle;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#List .list-table .td_num2 {
    font-weight: 600;
    color: #919191;
    width: 50px;
    min-width: 50px;
}


#List .list-table .td_subject {
    text-align: left;
    padding: 0 0 0 15px;
    word-break: break-word;
    overflow: hidden;
    width: 50px;
    min-width: 50px;
}

#List .list-table .bo_tit {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

#List .list-table .subject-link {
    color: #81c784;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

#List .list-table .subject-link:hover {
    color: #a5d6a7;
}

#List .list-table .bo_cate_link {
    display: inline-block;
    padding: 4px 10px;
    background: #0a0a0a;
    color: #3a8afd;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    margin-right: 8px;
}

#List .list-table .notice_icon {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #3a8afd 0%, #2a7aed 100%);
    color: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

#List .list-table .bo_current {
    color: #4caf50;
    font-weight: 700;
}

#List .list-table .new_icon {
    display: inline-block;
    padding: 2px 6px;
    background: #f44336;
    color: #ffffff;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 5px;
}

#List .list-table .cnt_cmt {
    color: #b0b0b0;
    font-weight: 500;
    margin-left: 5px;
}

#List .list-table .td_criteria {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 0 10px;
    width: 50px;
    min-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #b0b0b0;
}

#List .list-table .td_kind {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 0 10px;
    width: 50px;
    min-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #b0b0b0;
}

#List .list-table .td_code {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 0 10px;
    width: 50px;
    min-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #b0b0b0;
    font-family: 'Courier New', monospace;
}

#List .list-table .td_daemon {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 0 10px;
    width: 50px;
    min-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #b0b0b0;
    font-family: 'Courier New', monospace;
}

/* 매수/매도 옵션 컬럼 */
#List .list-table .td_buy_1,
#List .list-table .td_buy_2,
#List .list-table .td_buy_3,
#List .list-table .td_buy_4,
#List .list-table .td_buy_5,
#List .list-table .td_sell_1,
#List .list-table .td_sell_2,
#List .list-table .td_sell_3,
#List .list-table .td_sell_4,
#List .list-table .td_sell_5 {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 0 8px;
    width: 50px;
    min-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #b0b0b0;
}

#List .list-table th.col-buy-1,
#List .list-table th.col-buy-2,
#List .list-table th.col-buy-3,
#List .list-table th.col-buy-4,
#List .list-table th.col-buy-5,
#List .list-table th.col-sell-1,
#List .list-table th.col-sell-2,
#List .list-table th.col-sell-3,
#List .list-table th.col-sell-4,
#List .list-table th.col-sell-5 {
    width: 50px;
    min-width: 50px;
    font-weight: 500;
}

#List .list-table th.col-setting-count,
#List .list-table th.col-option-count {
    width: 50px;
    min-width: 50px;
    font-weight: 500;
}

#List .list-table .td_setting_count,
#List .list-table .td_option_count {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 0 10px;
    width: 50px;
    min-width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #b0b0b0;
}


#List .list-table .td_num {
    color: #919191;
    font-weight: 500;
}

#List .list-table .empty_table {
    padding: 50px;
    text-align: center;
    color: #919191;
    font-size: 16px;
}

/* 체크박스 */
#List .chk_box input[type="checkbox"] {
    display: none;
}

#List .chk_box label {
    display: inline-block;
    cursor: pointer;
}

#List .chk_box label span {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

#List .chk_box input[type="checkbox"]:checked + label span {
    background: linear-gradient(135deg, #3a8afd 0%, #2a7aed 100%);
    border-color: #4a9afd;
}

#List .chk_box input[type="checkbox"]:checked + label span:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

/* 페이지네이션 */
#List .list-pagination {
    margin: 20px 0;
    text-align: center;
}

#List .list-pagination a,
#List .list-pagination strong {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 3px;
    background: #0a0a0a;
    color: #b0b0b0;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

#List .list-pagination a:hover {
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #ffffff;
}

#List .list-pagination strong {
    background: #1a1a1a;
    border-color: #2a2a2a;
    color: #ffffff;
}

/* 하단 버튼 */
#List .bo_fx {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

/* 검색 */
#List .bo_sch_wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
}

#List .bo_sch {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    min-width: 400px;
    position: relative;
    z-index: 10001;
}

#List .bo_sch h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #1a1a1a;
}

#List .bo_sch select,
#List .bo_sch input[type="text"] {
    width: 100%;
    padding: 10px;
    background: #0a0a0a;
    color: #e0e0e0;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 12px;
}

#List .bo_sch select:focus,
#List .bo_sch input[type="text"]:focus {
    outline: none;
    border-color: #2a2a2a;
}

#List .sch_bar {
    display: flex;
    gap: 8px;
}

#List .sch_input {
    flex: 1;
}

#List .sch_btn {
    padding: 10px 20px;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

#List .sch_btn:hover {
    background: #2a2a2a;
}

#List .bo_sch_cls {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 12px;
    background: transparent;
    color: #919191;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#List .bo_sch_cls:hover {
    color: #ffffff;
    border-color: #3a8afd;
    background: #1a1a1a;
}

#List .bo_sch_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
}

/* 동적 효과 */
#List .fade-in {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#List .fade-in-item {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 리스트 행 클릭 효과 */
#List .list-item {
    position: relative;
    overflow: hidden;
}

#List .list-item:active {
    transform: scale(0.99);
    transition: transform 0.1s ease;
}

/* 리플 효과 */
#List .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(58, 138, 253, 0.6);
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    animation: rippleList 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes rippleList {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(30);
        opacity: 0;
    }
}

/* 카테고리 애니메이션 */
#List #bo_cate_ul a {
    position: relative;
    overflow: hidden;
}

/* 테이블 헤더 */
#List .list-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* 페이지네이션 애니메이션 */

/* 검색창 애니메이션 */
#List .bo_sch_wrap {
    animation: searchFadeIn 0.3s ease;
}

@keyframes searchFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 스켈레톤 로딩 효과 */
#List .list-item.loading {
    background: linear-gradient(90deg, #0a0a0a 25%, #151515 50%, #0a0a0a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 부드러운 스크롤 */
#List {
    scroll-behavior: smooth;
}


/* 반응형 디자인 */
@media (max-width: 768px) {
    #List {
        padding: 15px;
    }
    
    #List #bo_btn_top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #List .list-table {
        font-size: 11px;
    }
    
    #List .list-table th,
    #List .list-table td {
        padding: 10px 6px;
    }
    
    #List .list-table .td_criteria,
    #List .list-table .td_kind,
    #List .list-table .td_code,
    #List .list-table .td_daemon {
        font-size: 11px;
    }
    
    #List .list-table .td_code,
    #List .list-table .td_daemon {
        word-break: break-all;
        white-space: normal;
    }
    
    #List .bo_sch {
        min-width: 90%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    #List .list-table {
        font-size: 10px;
    }
    
    #List .list-table th,
    #List .list-table td {
        padding: 8px 4px;
    }
    
    #List .list-table .td_subject {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}