@import"https://fonts.googleapis.com/css2?family=Pretendard:wght@400;500;600;700&display=swap";*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}:root{--bg: #f5f5f7;--surface: #ffffff;--surface2: #f0f0f3;--border: rgba(0,0,0,.08);--border2: rgba(0,0,0,.12);--text: #111111;--text-sub: #666677;--green: #2a7d2e;--green-bg: #eaf3e0;--green-bd: #b0d890;--red: #b91c1c;--red-bg: #fde8e8;--red-bd: #f5a5a5;--amber: #92400e;--amber-bg: #fef3c7;--amber-bd: #fbbf24;--blue: #1a56a0;--blue-bg: #dbeafe;--blue-bd: #93c5fd;--slate: #475569;--slate-bg: #f1f5f9;--slate-bd: #cbd5e1;--radius: 12px;--radius-sm: 8px;font-family:Pretendard,-apple-system,sans-serif}body{background:var(--bg);color:var(--text);min-height:100vh}.app{display:flex;flex-direction:column;min-height:100vh;max-width:480px;margin:0 auto}.app-header{background:var(--surface);border-bottom:1px solid var(--border);padding:12px 16px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100}.header-left{display:flex;align-items:center;gap:8px}.brand-icon{font-size:18px}.brand-name{font-size:16px;font-weight:600;color:var(--text)}.header-right{display:flex;align-items:center;gap:8px}.last-updated{font-size:11px;color:var(--text-sub)}.icon-btn{width:32px;height:32px;border-radius:8px;border:1px solid var(--border2);background:var(--surface2);color:var(--text-sub);font-size:14px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s}.icon-btn:hover{background:var(--border)}.legend-bar{background:var(--surface);border-bottom:1px solid var(--border);padding:5px 16px;display:flex;gap:16px;align-items:center}.legend-item{display:flex;align-items:center;gap:5px;font-size:11px;color:var(--text-sub)}.legend-dot.err{min-width:16px;height:16px;border-radius:8px;background:var(--red);color:#fff;font-size:9px;font-weight:700;display:flex;align-items:center;justify-content:center;padding:0 3px}.legend-note-icon{font-size:13px}.main-content{flex:1;padding:16px;display:flex;flex-direction:column;gap:16px}.floor-section{display:flex;flex-direction:column;gap:8px}.floor-header{display:flex;align-items:center;gap:8px}.floor-label{font-size:16px;font-weight:600;color:var(--text)}.floor-sub{font-size:11px;color:var(--text-sub)}.rooms-grid{display:grid;grid-template-columns:1fr 1fr;gap:6px}.rooms-grid.single{grid-template-columns:1fr}.booth-grid{display:grid;grid-template-columns:1fr 1fr;gap:6px}.room-card{background:var(--surface);border:1px solid var(--border);border-left:3px solid var(--green);border-radius:var(--radius-sm);padding:10px 11px;cursor:pointer;transition:background .1s;-webkit-user-select:none;user-select:none}.room-card:hover{background:var(--surface2)}.room-card.status-issue{border-left-color:var(--red)}.room-card.status-maintenance{border-left-color:var(--amber)}.room-card.status-normal{border-left-color:var(--green)}.card-top{display:flex;align-items:center;justify-content:space-between}.card-name-row{display:flex;align-items:baseline;gap:4px;min-width:0}.card-name{font-size:13px;font-weight:600;color:var(--text)}.card-desc{font-size:10px;color:var(--text-sub)}.card-icons{display:flex;align-items:center;gap:4px;flex-shrink:0}.card-icon-slot{width:22px;height:22px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.card-issue-count{min-width:20px;height:20px;border-radius:10px;background:var(--red);color:#fff;font-size:11px;font-weight:700;display:flex;align-items:center;justify-content:center;padding:0 5px}.card-note-icon{font-size:13px;color:var(--text-sub)}.card-status-icon{font-size:14px}.card-status-icon.ok{color:var(--green)}.card-status-icon.err{color:var(--red)}.card-status-icon.warn{color:var(--amber)}.booth-card{background:var(--surface);border:1px solid var(--border);border-left:3px solid var(--green);border-radius:var(--radius-sm);padding:9px 11px;display:flex;align-items:center;justify-content:space-between;cursor:pointer;transition:background .1s;-webkit-user-select:none;user-select:none}.booth-card:hover{background:var(--surface2)}.booth-card.status-issue{border-left-color:var(--red)}.booth-card.status-maintenance{border-left-color:var(--amber)}.booth-card.status-normal{border-left-color:var(--green)}.booth-name{font-size:13px;font-weight:600;color:var(--text)}.booth-icon{font-size:15px}.booth-icon.ok{color:var(--green)}.booth-icon.err{color:var(--red)}.booth-icon.warn{color:var(--amber)}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0006;z-index:200;display:flex;align-items:flex-end;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);animation:fadeIn .2s ease-out}@keyframes fadeIn{0%{background:#0000}to{background:#0006}}.modal-overlay.closing{animation:fadeOut .2s ease-in forwards}.modal-overlay.closing .modal-sheet{animation:slideDown .2s ease-in forwards}@keyframes fadeOut{to{background:#0000}}@keyframes slideDown{to{transform:translateY(100%);opacity:.8}}.modal-sheet{background:var(--surface);border-radius:16px 16px 0 0;width:100%;max-width:480px;margin:0 auto;max-height:85vh;overflow-y:auto;animation:slideUp .25s cubic-bezier(.32,.72,0,1)}@keyframes slideUp{0%{transform:translateY(100%);opacity:.8}to{transform:translateY(0);opacity:1}}.modal-handle{width:36px;height:4px;border-radius:2px;background:var(--border2);margin:10px auto 0}.modal-header{padding:12px 16px 10px;display:flex;align-items:flex-start;justify-content:space-between;border-bottom:1px solid var(--border)}.modal-room-name{font-size:16px;font-weight:600;color:var(--text)}.modal-room-sub{font-size:12px;color:var(--text-sub);margin-top:2px}.modal-close{background:none;border:none;color:var(--text-sub);font-size:18px;cursor:pointer;padding:0;line-height:1}.modal-issues{padding:12px 16px;display:flex;flex-direction:column;gap:8px;border-bottom:1px solid var(--border)}.modal-section-title{font-size:11px;font-weight:600;color:var(--text-sub)}.issues-header{display:flex;align-items:center;justify-content:space-between;gap:8px}.report-pill{border:1px solid var(--border2);border-radius:6px;padding:2px 8px;font-size:11px;font-weight:500;color:var(--text-sub);background:var(--surface);text-decoration:none;white-space:nowrap;flex-shrink:0;transition:background .1s,color .1s}.report-pill:hover{background:var(--surface2);color:var(--text)}.issues-clear{display:flex;align-items:center;justify-content:center;gap:5px;padding:8px 0;font-size:12px;color:var(--green)}.issues-clear-icon{font-size:14px}.issue-item{border:1px solid var(--border);border-left:3px solid var(--red);border-radius:8px;padding:9px 11px}.issue-item.resolved{border-left-color:var(--border);opacity:.5}.issue-item.warn{border-left-color:var(--amber)}.issue-item.wip{border-left-color:var(--blue)}.ii-wip-badge{font-size:10px;font-weight:600;padding:1px 6px;border-radius:4px;background:var(--blue-bg);color:var(--blue);border:1px solid var(--blue-bd)}.ii-top{display:flex;align-items:center;gap:5px;margin-bottom:4px;flex-wrap:wrap}.ii-cat{font-size:10px;padding:1px 6px;border-radius:4px;background:var(--surface2);color:var(--text-sub);border:1px solid var(--border)}.ii-content{font-size:13px;color:var(--text);line-height:1.45;margin-bottom:5px}.ic-content{font-size:13px;color:var(--text);line-height:1.45;margin-bottom:4px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.nc-text{font-size:13px;color:var(--text);line-height:1.45;margin-bottom:4px}.ii-slack-link{display:inline-block;font-size:10px;color:var(--text-sub);text-decoration:none;margin-bottom:5px}.ii-slack-link:hover{text-decoration:underline;color:var(--blue)}.ii-foot{display:flex;align-items:center;justify-content:space-between}.ii-time{font-size:10px;color:var(--text-sub)}.ii-urgent{font-size:10px;font-weight:500;color:var(--red);margin-left:5px}.ii-tick{font-size:11px;color:var(--green)}.empty-text{font-size:13px;color:var(--text-sub);text-align:center;padding:12px 0}.headsup-section{padding:12px 16px;border-top:1px solid var(--border);display:flex;flex-direction:column;gap:10px}.headsup-header{display:flex;align-items:center;gap:8px}.headsup-title{font-size:11px;font-weight:600;color:var(--text-sub)}.notes-stack{display:flex;flex-direction:column;gap:8px}.issue-item.note-item{border-left-color:var(--border2)}.note-top{justify-content:flex-end;width:100%}.nc-close{width:20px;height:20px;flex-shrink:0;background:none;border:none;padding:0;display:flex;align-items:center;justify-content:center;font-size:13px;color:var(--text-sub);cursor:pointer;border-radius:4px;transition:background .1s}.nc-close:hover{background:#00000014}.note-confirm{margin-top:4px;padding-top:8px;border-top:1px solid rgba(0,0,0,.1);display:flex;align-items:center;justify-content:space-between;gap:8px}.note-confirm-text{font-size:12px;font-weight:500;color:var(--text)}.note-confirm-actions{display:flex;gap:6px;flex-shrink:0}.note-confirm-cancel{border:1px solid var(--border2);border-radius:8px;padding:5px 10px;font:inherit;font-size:11px;font-weight:600;color:var(--text-sub);background:var(--surface);cursor:pointer}.note-confirm-ok{border:none;border-radius:8px;padding:5px 10px;font:inherit;font-size:11px;font-weight:600;color:#fff;background:var(--red);cursor:pointer}.note-confirm-cancel:disabled,.note-confirm-ok:disabled{opacity:.5;cursor:not-allowed}.note-input-row{display:flex;gap:6px;align-items:stretch;padding-bottom:12px}.note-textarea{flex:1;min-height:60px;border:1px solid var(--border2);border-radius:8px;padding:8px 10px;font:inherit;font-size:13px;color:var(--text);background:var(--surface);resize:none}.note-textarea:focus{outline:none;border-color:var(--blue-bd)}.note-textarea:disabled{opacity:.6}.note-send-btn{flex-shrink:0;border:none;border-radius:8px;padding:0 14px;font:inherit;font-size:13px;font-weight:600;color:#fff;background:#111;cursor:pointer;white-space:nowrap}.note-send-btn:disabled{opacity:.45;cursor:not-allowed}.loading-screen{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;height:200px;color:var(--text-sub)}.loading-spinner{width:24px;height:24px;border-radius:50%;border:2px solid var(--border2);border-top-color:var(--blue);animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}@media (min-width: 481px){.app{box-shadow:0 0 0 1px var(--border);min-height:100vh}body{background:#e8e8ec}}.report-btn{display:flex;align-items:center;gap:4px;padding:4px 10px;border-radius:6px;border:1px solid #b91c1c;background:#fde8e8;color:#b91c1c;font-size:12px;font-weight:500;cursor:pointer;font-family:inherit}.report-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0006;z-index:300;display:flex;align-items:flex-end;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);animation:fadeIn .2s ease-out}.report-sheet{background:var(--surface);border-radius:16px 16px 0 0;width:100%;max-width:480px;margin:0 auto;max-height:90vh;display:flex;flex-direction:column;animation:slideUp .25s cubic-bezier(.32,.72,0,1)}.report-header{padding:12px 16px 10px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid var(--border);flex-shrink:0}.report-title{font-size:15px;font-weight:600;color:var(--text)}.report-body{flex:1;overflow-y:auto;padding:14px 16px;display:flex;flex-direction:column;gap:14px}.report-field{display:flex;flex-direction:column;gap:6px}.report-label{font-size:12px;font-weight:600;color:var(--text-sub)}.required{color:var(--red)}.report-room-tag{display:inline-flex;align-items:center;padding:4px 10px;border-radius:6px;background:var(--surface2);border:1px solid var(--border2);font-size:13px;font-weight:500;color:var(--text);align-self:flex-start}.category-grid{display:grid;grid-template-columns:1fr 1fr;gap:6px}.category-btn{padding:8px 10px;border-radius:8px;border:1px solid var(--border2);background:var(--surface);font:inherit;font-size:13px;color:var(--text-sub);cursor:pointer;text-align:center;transition:all .1s}.category-btn.selected{border-color:var(--blue-bd);background:var(--blue-bg);color:var(--blue);font-weight:600}.urgency-row{display:flex;gap:8px}.urgency-pill{flex:1;padding:7px 0;border-radius:20px;border:1px solid var(--border2);background:var(--surface);font:inherit;font-size:13px;color:var(--text-sub);cursor:pointer;text-align:center;transition:all .1s}.urgency-pill.urgency-low.selected{border-color:var(--green-bd);background:var(--green-bg);color:var(--green);font-weight:600}.urgency-pill.urgency-mid.selected{border-color:var(--amber-bd);background:var(--amber-bg);color:var(--amber);font-weight:600}.urgency-pill.urgency-high.selected{border-color:var(--red-bd);background:var(--red-bg);color:var(--red);font-weight:600}.report-textarea{width:100%;min-height:80px;border:1px solid var(--border2);border-radius:8px;padding:8px 10px;font:inherit;font-size:13px;color:var(--text);background:var(--surface);resize:none}.report-textarea:focus{outline:none;border-color:var(--blue-bd)}.report-input{width:100%;border:1px solid var(--border2);border-radius:8px;padding:8px 10px;font:inherit;font-size:13px;color:var(--text);background:var(--surface)}.report-input:focus{outline:none;border-color:var(--blue-bd)}.report-footer{flex-shrink:0;padding:12px 16px;border-top:1px solid var(--border);background:var(--surface)}.report-submit-btn{width:100%;padding:12px 0;border:none;border-radius:10px;font:inherit;font-size:14px;font-weight:600;color:#fff;background:var(--red);cursor:pointer;transition:opacity .1s}.report-submit-btn:disabled{opacity:.4;cursor:not-allowed}.report-confirm{display:flex;align-items:center;justify-content:space-between;gap:8px}.report-confirm-text{font-size:13px;font-weight:500;color:var(--text)}.report-confirm-btns{display:flex;gap:8px;flex-shrink:0}.report-cancel-btn{border:1px solid var(--border2);border-radius:8px;padding:8px 14px;font:inherit;font-size:13px;font-weight:500;color:var(--text-sub);background:var(--surface);cursor:pointer}.report-ok-btn{border:none;border-radius:8px;padding:8px 14px;font:inherit;font-size:13px;font-weight:600;color:#fff;background:var(--red);cursor:pointer}.report-ok-btn:disabled{opacity:.5;cursor:not-allowed}.report-done{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:60px 20px;gap:10px}.report-done-icon{font-size:52px;color:var(--green)}.report-done-title{font-size:18px;font-weight:700;color:var(--text)}.report-done-sub{font-size:13px;color:var(--text-sub)}
