/* 파일명: st003_batch_action.css */










/* 파일명: st003_batch_action.css */

/* ==========================================================================
   [ST003] BATCH ACTION HUB - HIGH DENSITY DARK THEME
   - 2계층 저빈도/일괄 작업 모달 & 드로어 전용 스타일
   ========================================================================== */

#st003_mod_batch_action {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 6px;
    background-color: #1a1a1a;
    border: 1px solid #444444;
    color: #e0e0e0;
    font-family: 'Gulim', 'Dotum', Tahoma, sans-serif;
    font-size: 11px;
}

/* 상단 타깃팅 상태바 */
.st003-batch-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #242424;
    padding: 4px 8px;
    border-left: 3px solid #66b0ff;
    font-weight: bold;
}

.st003-batch-target-count {
    color: #ffcc00;
}

/* 작업 버튼 그리드 */
.st003-batch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.st003-batch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background-color: #2b2b2b;
    border-top: 1px solid #555555;
    border-left: 1px solid #555555;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    padding: 8px 6px;
    color: #f0f0f0;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    text-align: center;
}

.st003-batch-btn:hover {
    background-color: #383838;
}

.st003-batch-btn:active {
    border-top: 1px solid #111111;
    border-left: 1px solid #111111;
    border-right: 1px solid #555555;
    border-bottom: 1px solid #555555;
    padding: 9px 5px 7px 7px;
}

/* 파괴적 액션 전용 (경고 레드) */
.st003-batch-btn-danger {
    background-color: #3d1c1c;
    border-color: #772222 #220000 #220000 #772222;
    color: #ff9999;
}

.st003-batch-btn-danger:hover {
    background-color: #552222;
}

/* 🚨 [변경점] 인라인 CSS 대체용 클립보드 전용 블루 테마 스타일 클래스 신설 */
.st003-batch-btn-primary {
    background-color: #1f6feb;
    border-color: #388bfd #0d419d #0d419d #388bfd;
    color: #ffffff;
}

.st003-batch-btn-primary:hover {
    background-color: #388bfd;
}

/* 진행 상태 로그창 */
.st003-batch-console {
    background-color: #0d0d0d;
    border: 1px solid #333333;
    padding: 6px;
    height: 80px;
    overflow-y: auto;
    font-family: 'Consolas', monospace;
    font-size: 10px;
    color: #00ff66;
    line-height: 1.3;
}