/* 공통 레이아웃 */
.glad-wrap{ overflow:visible; }
.glad-header-actions{display:flex;justify-content:flex-end;margin:8px 0}
.gl-table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
.gl-table-wrap table{min-width:980px;table-layout:auto}
.column-glad_apply .button{white-space:nowrap}

.glad-switch{position:relative;display:inline-block;width:36px;height:20px}
.glad-switch input{display:none}
.glad-switch span{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background:#e5e7eb;border-radius:999px;transition:.2s}
.glad-switch span:before{content:"";position:absolute;left:2px;top:2px;width:16px;height:16px;background:#fff;border-radius:50%;transition:.2s}
.glad-switch input:checked + span{background:#16a34a}
.glad-switch input:checked + span:before{transform:translateX(16px)}

/* 현황 카드 */
.glad-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin:12px 0}
.glad-card{background:#fff;border:1px solid #e5e7eb;border-radius:8px;padding:16px;text-align:center}
.glad-card__value{font-size:24px;font-weight:700;color:#111827}
.glad-card__label{margin-top:6px;color:#6b7280}

/* 하단 고지 문구 리스트 */
.glad-disclosures{margin-top:16px}
.glad-disclosures details{background:#fff;border:1px solid #e5e7eb;border-radius:8px;padding:10px 12px}
.glad-disclosure-list{display:grid;grid-template-columns:1fr;gap:8px;margin-top:8px}
.glad-disclosure-item{padding:8px;border:1px dashed #e5e7eb;border-radius:6px;background:#fafafa}
.glad-disclosure-text{margin-top:4px;color:#374151}

/* 태그 */
.glad-tag{display:inline-block;border-radius:999px;padding:2px 8px;font-size:12px}
.glad-tag.green{background:#e8f5e9;color:#166534;border:1px solid #bbf7d0}

/* 변경 감지 표시 */
tr.glad-dirty{background:#fffbeb}

/* 상태 뱃지 색상 */
.goji-state-ok{color:#166534}
.goji-state-pending{color:#92400e}
.goji-state-dup{color:#b45309}
.goji-state-off{color:#991b1b}

/* 심플 모달 */
.glad-modal-ov{position:fixed;inset:0;background:rgba(0,0,0,.35);display:flex;align-items:center;justify-content:center;z-index:100000}
.glad-modal{background:#fff;border:1px solid #e5e7eb;border-radius:8px;min-width:360px;max-width:720px;padding:0;box-shadow:0 10px 24px rgba(0,0,0,.12)}
.glad-modal-hd{padding:10px 14px;border-bottom:1px solid #e5e7eb;font-weight:600}
.glad-modal-bd{padding:12px 14px}
.glad-modal-ft{padding:10px 14px;border-top:1px solid #e5e7eb;display:flex;gap:8px;justify-content:flex-end}

/* Toast */
.glad-toast{position:fixed;right:16px;bottom:16px;background:#111827;color:#fff;padding:10px 12px;border-radius:6px;opacity:0;transform:translateY(6px);transition:all .25s ease;z-index:100001}
.glad-toast.show{opacity:1;transform:translateY(0)}
.glad-toast.is-error{background:#b91c1c}
