* { margin: 0px; padding: 0px; box-sizing: border-box; }
body { background: linear-gradient(135deg, rgb(240, 247, 255) 0%, rgb(224, 237, 250) 100%); font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif; height: 100vh; overflow: hidden; }
.app { display: flex; height: 100vh; backdrop-filter: blur(2px); }
.sidebar { width: 260px; background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-right: 1px solid rgba(255, 255, 255, 0.8); display: flex; flex-direction: column; padding: 24px 16px; gap: 20px; flex-shrink: 0; overflow-y: auto; }
.sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(30, 136, 229, 0.15); border-radius: 3px; }
.logo-area { padding-left: 12px; }
.logo { font-size: 26px; font-weight: 800; background: linear-gradient(135deg, rgb(30, 136, 229), rgb(66, 165, 245)) text; color: transparent; letter-spacing: 1px; }
.logo-sub { font-size: 12px; color: rgb(90, 110, 138); margin-top: 6px; }
.nav { flex: 1 1 0%; }
.nav-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; margin: 2px 0px; border-radius: 14px; color: rgb(26, 43, 76); font-weight: 500; font-size: 13px; cursor: pointer; transition: 0.2s; user-select: none; }
.nav-item i { width: 24px; font-style: normal; text-align: center; }
.nav-item.active { background: rgba(30, 136, 229, 0.2); color: rgb(30, 136, 229); border-left: 3px solid rgb(30, 136, 229); }
.nav-item:hover:not(.active) { background: rgba(255, 255, 255, 0.5); }
.nav-group-label { font-size: 10px; color: rgb(90, 110, 138); text-transform: uppercase; letter-spacing: 1.5px; padding: 8px 16px 4px; margin-top: 4px; font-weight: 600; }
.project-section { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(0, 0, 0, 0.05); }
.project-label { font-size: 11px; color: rgb(90, 110, 138); letter-spacing: 1px; padding: 0px 12px; margin-bottom: 8px; }
.project-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; font-size: 14px; color: rgb(26, 43, 76); border-radius: 12px; cursor: pointer; transition: 0.2s; }
.project-item:hover { background: rgba(255, 255, 255, 0.5); }
.project-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.main { flex: 1 1 0%; display: flex; flex-direction: column; overflow: hidden; padding: 20px 24px 24px; gap: 20px; }
.top-bar { display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(12px); border-radius: 60px; padding: 8px 20px; border: 1px solid rgba(255, 255, 255, 0.8); flex-shrink: 0; }
.breadcrumb { font-size: 14px; color: rgb(30, 136, 229); font-weight: 500; }
.breadcrumb span { color: rgb(90, 110, 138); margin: 0px 8px; }
.user-area { display: flex; align-items: center; gap: 20px; }
.notification-icon { cursor: pointer; color: rgb(90, 110, 138); font-size: 18px; transition: 0.2s; }
.notification-icon:hover { color: rgb(30, 136, 229); }
.user-avatar { width: 36px; height: 36px; background: rgb(30, 136, 229); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; cursor: pointer; transition: 0.2s; font-size: 14px; }
.user-avatar:hover { transform: scale(1.05); }
.page-container { flex: 1 1 0%; min-height: 0px; overflow: hidden; }
.page { display: none; height: 100%; animation: 0.3s ease 0s 1 normal none running fadeInUp; }
.page.active { display: flex; }
@keyframes fadeInUp { 
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0px); }
}
#page-chat { gap: 24px; }
.chat-panel { flex: 2 1 0%; background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 28px; border: 1px solid rgba(255, 255, 255, 0.8); display: flex; flex-direction: column; overflow: hidden; box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px; }
.chat-header { padding: 20px 24px; border-bottom: 1px solid rgba(0, 0, 0, 0.05); font-weight: 600; color: rgb(26, 43, 76); font-size: 18px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.chat-header-dot { width: 10px; height: 10px; background: rgb(76, 175, 80); border-radius: 50%; animation: 2s ease 0s infinite normal none running pulse; }
@keyframes pulse { 
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.chat-messages { flex: 1 1 0%; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(30, 136, 229, 0.2); border-radius: 4px; }
.message { display: flex; gap: 12px; max-width: 85%; animation: 0.3s ease 0s 1 normal none running fadeInUp; }
.message.user { align-self: flex-end; flex-direction: row-reverse; }
.message-avatar { width: 32px; height: 32px; background: rgb(227, 242, 253); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.message.user .message-avatar { background: rgb(30, 136, 229); color: white; }
.message-bubble { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(4px); padding: 12px 18px; border-radius: 20px; font-size: 14px; line-height: 1.5; color: rgb(26, 43, 76); box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px; border: 1px solid rgba(255, 255, 255, 0.6); }
.message.user .message-bubble { background: rgb(30, 136, 229); color: white; border: none; }
.quick-commands { padding: 0px 24px 12px; display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.quick-cmd { background: rgba(255, 255, 255, 0.6); border: none; border-radius: 30px; padding: 6px 14px; font-size: 12px; cursor: pointer; transition: 0.2s; color: rgb(26, 43, 76); font-family: inherit; }
.quick-cmd:hover { background: rgba(30, 136, 229, 0.15); color: rgb(30, 136, 229); }
.chat-input-area { padding: 16px 24px 24px; border-top: 1px solid rgba(0, 0, 0, 0.05); display: flex; gap: 12px; flex-shrink: 0; }
.chat-input { flex: 1 1 0%; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 40px; padding: 12px 20px; font-size: 14px; outline: none; transition: 0.2s; font-family: inherit; color: rgb(26, 43, 76); }
.chat-input:focus { border-color: rgb(30, 136, 229); background: white; }
.chat-input::placeholder { color: rgb(90, 110, 138); }
.send-btn { width: 44px; height: 44px; background: rgb(30, 136, 229); border: none; border-radius: 50%; color: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; flex-shrink: 0; }
.send-btn:hover { background: rgb(21, 101, 192); transform: scale(1.05); }
.right-panel { flex: 1 1 0%; display: flex; flex-direction: column; gap: 20px; overflow-y: auto; min-width: 0px; }
.right-panel::-webkit-scrollbar { width: 4px; }
.right-panel::-webkit-scrollbar-thumb { background: rgba(30, 136, 229, 0.2); border-radius: 4px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-item { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 20px; padding: 20px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px; cursor: pointer; transition: 0.2s; }
.stat-item:hover { background: rgba(255, 255, 255, 0.7); transform: translateY(-2px); }
.stat-label { font-size: 12px; color: rgb(90, 110, 138); margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 700; color: rgb(30, 136, 229); }
.stat-change { font-size: 11px; margin-top: 6px; }
.stat-change.up { color: rgb(76, 175, 80); }
.stat-change.down { color: rgb(244, 67, 54); }
.panel-card { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px; padding: 20px; }
.panel-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.panel-card-title { font-size: 16px; font-weight: 600; color: rgb(26, 43, 76); }
.panel-card-action { font-size: 12px; color: rgb(30, 136, 229); cursor: pointer; transition: 0.2s; background: none; border: none; font-family: inherit; }
.panel-card-action:hover { color: rgb(21, 101, 192); }
.workflow-list, .leads-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.workflow-item, .lead-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: rgba(255, 255, 255, 0.4); border-radius: 14px; cursor: pointer; transition: 0.2s; }
.workflow-item:hover, .lead-item:hover { background: rgba(255, 255, 255, 0.7); }
.workflow-icon { width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.workflow-info, .lead-info { flex: 1 1 0%; min-width: 0px; }
.workflow-name, .lead-name { font-size: 13px; font-weight: 500; color: rgb(26, 43, 76); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.workflow-status { font-size: 11px; margin-top: 2px; }
.workflow-status.running { color: rgb(76, 175, 80); }
.workflow-status.paused { color: rgb(255, 152, 0); }
.workflow-status.stopped { color: rgb(158, 158, 158); }
.lead-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgb(227, 242, 253); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; color: rgb(30, 136, 229); font-weight: 600; }
.lead-source { font-size: 11px; color: rgb(90, 110, 138); margin-top: 2px; }
.lead-time { font-size: 11px; color: rgb(90, 110, 138); flex-shrink: 0; }
.module-page { flex-direction: column; gap: 24px; overflow-y: auto; padding-right: 4px; }
.module-page::-webkit-scrollbar { width: 4px; }
.module-page::-webkit-scrollbar-thumb { background: rgba(30, 136, 229, 0.2); border-radius: 4px; }
.module-hero { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 28px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px; padding: 32px; display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.module-hero-icon { width: 72px; height: 72px; border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 36px; flex-shrink: 0; background: rgba(30, 136, 229, 0.1); }
.module-hero-text h2 { font-size: 22px; font-weight: 700; color: rgb(26, 43, 76); margin-bottom: 8px; }
.module-hero-text p { font-size: 14px; color: rgb(90, 110, 138); line-height: 1.5; }
.module-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.feature-card { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px; padding: 24px; cursor: pointer; transition: 0.2s; display: flex; flex-direction: column; gap: 12px; }
.feature-card:hover { background: rgba(255, 255, 255, 0.75); transform: translateY(-3px); }
.feature-card-icon { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.feature-card h3 { font-size: 15px; font-weight: 600; color: rgb(26, 43, 76); }
.feature-card p { font-size: 12px; color: rgb(90, 110, 138); line-height: 1.5; }
.feature-card .feature-tag { display: inline-block; background: rgba(30, 136, 229, 0.1); color: rgb(30, 136, 229); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 500; align-self: flex-start; }
.taskdata-long-card { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px; padding: 24px 28px; cursor: pointer; transition: 0.2s; margin-top: 8px; }
.taskdata-long-card:hover { background: rgba(255, 255, 255, 0.75); transform: translateY(-2px); }
.taskdata-long-header { display: flex; align-items: center; justify-content: space-between; }
.taskdata-long-sources { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0, 0, 0, 0.06); }
.taskdata-source-tag { background: rgba(30, 136, 229, 0.08); color: rgb(30, 136, 229); padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.workflow-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.workflow-full-card { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px; padding: 24px; }
.workflow-full-card h3 { font-size: 16px; font-weight: 600; color: rgb(26, 43, 76); margin-bottom: 16px; }
.wf-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0px; border-bottom: 1px solid rgba(0, 0, 0, 0.04); }
.wf-row:last-child { border-bottom: none; }
.wf-row-left { display: flex; align-items: center; gap: 12px; }
.wf-row-icon { width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.wf-row-name { font-size: 14px; font-weight: 500; color: rgb(26, 43, 76); }
.wf-row-desc { font-size: 11px; color: rgb(90, 110, 138); margin-top: 2px; }
.wf-row-status { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 500; }
.wf-row-status.running { background: rgba(76, 175, 80, 0.12); color: rgb(76, 175, 80); }
.wf-row-status.paused { background: rgba(255, 152, 0, 0.12); color: rgb(255, 152, 0); }
.wf-row-status.stopped { background: rgba(158, 158, 158, 0.12); color: rgb(158, 158, 158); }
.settings-list { display: flex; flex-direction: column; gap: 12px; }
.settings-item { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.8); padding: 16px 20px; display: flex; align-items: center; gap: 16px; cursor: pointer; transition: 0.2s; }
.settings-item:hover { background: rgba(255, 255, 255, 0.75); }
.settings-item-icon { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.settings-item-info { flex: 1 1 0%; }
.settings-item-info h4 { font-size: 14px; font-weight: 600; color: rgb(26, 43, 76); }
.settings-item-info p { font-size: 12px; color: rgb(90, 110, 138); margin-top: 4px; }
.settings-item-arrow { color: rgb(90, 110, 138); font-size: 18px; flex-shrink: 0; }
.material-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.material-card { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 12px; overflow: hidden; cursor: pointer; transition: 0.2s; }
.material-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.75); }
.material-thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 40px; background: rgba(30, 136, 229, 0.06); }
.material-info { padding: 12px 16px; }
.material-info h4 { font-size: 13px; font-weight: 600; color: rgb(26, 43, 76); }
.material-info p { font-size: 11px; color: rgb(90, 110, 138); margin-top: 4px; }
.collect-view { display: none; flex-direction: column; gap: 24px; height: 100%; overflow-y: auto; animation: 0.3s ease 0s 1 normal none running fadeInUp; }
.collect-view.active { display: flex; flex: 1; min-height: 0; opacity: 1; animation: none; }
.page.active { display: flex; flex-direction: column; }
.collect-view::-webkit-scrollbar { width: 4px; }
.collect-view::-webkit-scrollbar-thumb { background: rgba(30, 136, 229, 0.2); border-radius: 4px; }
.collect-back { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 30px; padding: 8px 18px; cursor: pointer; transition: 0.2s; font-size: 13px; color: rgb(26, 43, 76); font-family: inherit; font-weight: 500; }
.collect-back:hover { background: rgba(255, 255, 255, 0.8); }
.collect-card { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(20px); border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px; padding: 28px 32px; }
.steps-bar { display: flex; align-items: center; gap: 0px; margin-bottom: 28px; }
.step-item { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.step-circle { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; background: rgba(158, 158, 158, 0.12); color: rgb(158, 158, 158); transition: 0.2s; }
.step-item.active .step-circle { background: rgb(30, 136, 229); color: white; }
.step-item.done .step-circle { background: rgb(76, 175, 80); color: white; }
.step-label { font-size: 13px; color: rgb(158, 158, 158); font-weight: 500; transition: 0.2s; }
.step-item.active .step-label { color: rgb(30, 136, 229); }
.step-item.done .step-label { color: rgb(76, 175, 80); }
.step-line { flex: 1 1 0%; height: 2px; background: rgba(158, 158, 158, 0.2); margin: 0px 12px; min-width: 30px; }
.step-line.done { background: rgb(76, 175, 80); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: rgb(26, 43, 76); margin-bottom: 8px; }
.form-label .required { color: rgb(244, 67, 54); margin-left: 2px; }
.form-label .optional { color: rgb(158, 158, 158); font-weight: 400; font-size: 12px; margin-left: 6px; }
.form-input { width: 100%; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 14px; padding: 12px 16px; font-size: 14px; outline: none; transition: 0.2s; font-family: inherit; color: rgb(26, 43, 76); }
.form-input:focus { border-color: rgb(30, 136, 229); background: white; }
.form-input::placeholder { color: rgb(158, 158, 158); }
.form-select { width: 100%; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6E8A' stroke-width='2' fill='none'/%3E%3C/svg%3E") right 16px center no-repeat rgba(255, 255, 255, 0.8); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 14px; padding: 12px 16px; font-size: 14px; outline: none; transition: 0.2s; font-family: inherit; color: rgb(26, 43, 76); appearance: none; cursor: pointer; }
.form-select:focus { border-color: rgb(30, 136, 229); background-color: white; }
.form-textarea { width: 100%; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 14px; padding: 12px 16px; font-size: 14px; outline: none; transition: 0.2s; font-family: inherit; color: rgb(26, 43, 76); resize: vertical; min-height: 80px; line-height: 1.5; }
.form-textarea:focus { border-color: rgb(30, 136, 229); background: white; }
.form-textarea::placeholder { color: rgb(158, 158, 158); }
.form-hint { font-size: 12px; color: rgb(158, 158, 158); margin-top: 6px; }
.city-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.city-chip { padding: 8px 16px; border-radius: 20px; font-size: 13px; cursor: pointer; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.8); color: rgb(26, 43, 76); transition: 0.2s; font-family: inherit; font-weight: 500; }
.city-chip:hover { background: rgba(30, 136, 229, 0.1); border-color: rgba(30, 136, 229, 0.3); }
.city-chip.selected, .city-chip.active { background: rgba(30, 136, 229, 0.2); border-color: rgb(30, 136, 229); color: rgb(30, 136, 229); }
.city-picker { position: relative; }
.city-picker-input { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 14px; cursor: pointer; transition: 0.2s; min-height: 42px; font-size: 14px; color: rgb(26, 43, 76); flex-wrap: wrap; }
.city-picker-input:hover { border-color: rgba(30, 136, 229, 0.4); }
.city-picker-input.open { border-color: rgb(30, 136, 229); box-shadow: rgba(30, 136, 229, 0.1) 0px 0px 0px 3px; }
.city-picker-placeholder { color: rgb(154, 165, 180); }
.city-picker-value { display: flex; align-items: center; gap: 4px; background: rgba(30, 136, 229, 0.12); color: rgb(30, 136, 229); padding: 4px 10px; border-radius: 20px; font-size: 13px; font-weight: 500; }
.city-picker-value .cp-remove { cursor: pointer; font-size: 14px; margin-left: 2px; opacity: 0.6; }
.city-picker-value .cp-remove:hover { opacity: 1; }
.city-picker-arrow { margin-left: auto; font-size: 12px; color: rgb(154, 165, 180); transition: 0.2s; }
.city-picker-input.open .city-picker-arrow { transform: rotate(180deg); }
.city-picker-dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0px; right: 0px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 16px; box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 40px; z-index: 1000; max-height: 380px; overflow: hidden; }
.city-picker-dropdown.show { display: flex; flex-direction: column; }
.city-picker-search { padding: 12px 14px; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.city-picker-search input { width: 100%; padding: 8px 12px; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 10px; font-size: 13px; outline: none; background: rgba(255, 255, 255, 0.8); font-family: inherit; }
.city-picker-search input:focus { border-color: rgb(30, 136, 229); }
.city-picker-body { overflow-y: auto; flex: 1 1 0%; padding: 8px 0px; }
.city-picker-body::-webkit-scrollbar { width: 4px; }
.city-picker-body::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.1); border-radius: 2px; }
.cp-province { padding: 6px 16px; font-size: 12px; color: rgb(154, 165, 180); font-weight: 600; letter-spacing: 0.5px; }
.cp-cities { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 14px 10px; }
.cp-city { padding: 5px 12px; border-radius: 16px; font-size: 12px; cursor: pointer; background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(0, 0, 0, 0.06); color: rgb(26, 43, 76); transition: 0.15s; font-weight: 400; }
.cp-city:hover { background: rgba(30, 136, 229, 0.1); border-color: rgba(30, 136, 229, 0.2); }
.cp-city.selected { background: rgba(30, 136, 229, 0.15); border-color: rgb(30, 136, 229); color: rgb(30, 136, 229); font-weight: 500; }
.cp-no-result { padding: 20px; text-align: center; color: rgb(154, 165, 180); font-size: 13px; }
.aw-header-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 20px; box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 16px; margin-bottom: 14px; flex-shrink: 0; box-sizing: border-box; }
.aw-header-icon { font-size: 30px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgb(227, 242, 253), rgb(187, 222, 251)); border-radius: 14px; flex-shrink: 0; }
.aw-module { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 20px; box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 16px; margin-bottom: 14px; overflow: hidden; transition: 0.2s; flex-shrink: 0; }
.aw-module:hover { box-shadow: rgba(0, 0, 0, 0.07) 0px 6px 24px; }
.aw-module-header { display: flex; align-items: center; gap: 16px; padding: 18px 24px; cursor: pointer; transition: 0.15s; min-height: 78px; box-sizing: border-box; }
.aw-module-header:hover { background: rgba(30, 136, 229, 0.03); }
.aw-module-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.aw-module-info { flex: 1 1 0%; min-width: 0px; }
.aw-module-title { font-size: 15px; font-weight: 600; color: rgb(26, 43, 76); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aw-module-desc { font-size: 12px; color: rgb(90, 110, 138); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.aw-switch { width: 48px; height: 26px; border-radius: 13px; background: rgb(208, 213, 221); position: relative; cursor: pointer; transition: 0.2s; flex-shrink: 0; }
.aw-switch.small { width: 38px; height: 20px; border-radius: 10px; }
.aw-switch.active { background: rgb(30, 136, 229); }
.aw-switch-thumb { width: 22px; height: 22px; border-radius: 11px; background: rgb(255, 255, 255); position: absolute; top: 2px; left: 2px; transition: 0.2s; box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 4px; }
.aw-switch.small .aw-switch-thumb { width: 16px; height: 16px; border-radius: 8px; }
.aw-switch.active .aw-switch-thumb { left: 24px; }
.aw-switch.small.active .aw-switch-thumb { left: 20px; }
.aw-module-body { padding: 0px 20px 18px; border-top: 1px solid rgba(0, 0, 0, 0.05); }
.aw-steps { display: flex; align-items: center; justify-content: center; padding: 20px 0px 16px; gap: 0px; }
.aw-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.aw-step-dot { width: 28px; height: 28px; border-radius: 14px; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.06); color: rgb(154, 165, 180); transition: 0.2s; }
.aw-step.active .aw-step-dot { background: rgb(30, 136, 229); color: rgb(255, 255, 255); }
.aw-step.done .aw-step-dot { background: rgba(30, 136, 229, 0.15); color: rgb(30, 136, 229); }
.aw-step-label { font-size: 11px; color: rgb(154, 165, 180); white-space: nowrap; }
.aw-step.active .aw-step-label { color: rgb(30, 136, 229); font-weight: 600; }
.aw-step.done .aw-step-label { color: rgb(30, 136, 229); }
.aw-step-line { width: 40px; height: 2px; background: rgba(0, 0, 0, 0.08); margin: 0px 4px 20px; }
.aw-step-line.done { background: rgb(30, 136, 229); }
.aw-form-group { margin-bottom: 16px; }
.aw-form-label { display: block; font-size: 13px; font-weight: 600; color: rgb(26, 43, 76); margin-bottom: 6px; }
.aw-required { color: rgb(229, 57, 53); }
.aw-form-select, .aw-form-input { width: 100%; padding: 10px 14px; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 12px; font-size: 13px; color: rgb(26, 43, 76); background: rgba(255, 255, 255, 0.8); outline: none; transition: 0.15s; font-family: inherit; }
.aw-form-select:focus, .aw-form-input:focus { border-color: rgb(30, 136, 229); box-shadow: rgba(30, 136, 229, 0.08) 0px 0px 0px 3px; }
.aw-form-hint { font-size: 11px; color: rgb(154, 165, 180); margin-top: 4px; }
.aw-hint-box { display: flex; gap: 8px; padding: 12px 16px; background: rgba(30, 136, 229, 0.06); border-radius: 12px; font-size: 12px; color: rgb(90, 110, 138); line-height: 1.5; }
.aw-hint-icon { flex-shrink: 0; }
.aw-radio-group { display: flex; flex-direction: column; gap: 10px; }
.aw-radio-item { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 13px; color: rgb(26, 43, 76); }
.aw-radio-item input { display: none; }
.aw-radio-dot { width: 18px; height: 18px; border-radius: 9px; border: 2px solid rgb(208, 213, 221); display: flex; align-items: center; justify-content: center; transition: 0.15s; flex-shrink: 0; }
.aw-radio-dot.active { border-color: rgb(30, 136, 229); }
.aw-radio-dot.active::after { content: ""; width: 10px; height: 10px; border-radius: 5px; background: rgb(30, 136, 229); }
.aw-checkbox-group { display: flex; gap: 16px; flex-wrap: wrap; }
.aw-checkbox-item { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: rgb(26, 43, 76); }
.aw-checkbox-item input { display: none; }
.aw-checkbox-box { width: 18px; height: 18px; border-radius: 5px; border: 2px solid rgb(208, 213, 221); display: flex; align-items: center; justify-content: center; font-size: 11px; color: transparent; transition: 0.15s; }
.aw-checkbox-box.checked { background: rgb(30, 136, 229); border-color: rgb(30, 136, 229); color: rgb(255, 255, 255); }
.aw-platform-card { background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 16px; margin-bottom: 10px; overflow: hidden; transition: 0.15s; }
.aw-platform-card:hover { border-color: rgba(30, 136, 229, 0.2); }
.aw-platform-top { display: flex; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; }
.aw-platform-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.aw-platform-info { flex: 1 1 0%; }
.aw-platform-name { font-size: 14px; font-weight: 600; color: rgb(26, 43, 76); }
.aw-platform-desc { font-size: 11px; color: rgb(90, 110, 138); }
.aw-platform-body { padding: 0px 16px 14px; border-top: 1px solid rgba(0, 0, 0, 0.04); }
.aw-account-empty { text-align: center; padding: 20px; color: rgb(154, 165, 180); font-size: 13px; }
.aw-account-empty-icon { font-size: 32px; margin-bottom: 8px; }
.aw-btn-link { background: none; border: none; color: rgb(30, 136, 229); font-size: 13px; cursor: pointer; font-weight: 500; margin-top: 6px; font-family: inherit; }
.aw-btn-link:hover { text-decoration: underline; }
.aw-contact-platform-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255, 255, 255, 0.6); border: 2px solid transparent; border-radius: 16px; cursor: pointer; transition: 0.15s; margin-bottom: 10px; }
.aw-contact-platform-card.active { border-color: rgb(30, 136, 229); background: rgba(30, 136, 229, 0.06); }
.aw-contact-platform-card:hover { border-color: rgba(30, 136, 229, 0.3); }
.aw-strategy-label { font-size: 12px; color: rgb(90, 110, 138); margin-bottom: 8px; }
.aw-summary-card { background: rgba(30, 136, 229, 0.04); border-radius: 14px; padding: 16px 20px; }
.aw-summary-row { display: flex; justify-content: space-between; padding: 8px 0px; font-size: 13px; border-bottom: 1px solid rgba(0, 0, 0, 0.04); }
.aw-summary-row:last-child { border-bottom: none; }
.aw-summary-row span:first-child { color: rgb(90, 110, 138); }
.aw-summary-row span:last-child { color: rgb(26, 43, 76); font-weight: 500; }
.aw-success-box { margin-top: 14px; padding: 12px 16px; background: rgba(76, 175, 80, 0.08); border-radius: 12px; font-size: 13px; color: rgb(46, 125, 50); text-align: center; }
.aw-btn-primary { padding: 10px 24px; background: rgb(30, 136, 229); color: rgb(255, 255, 255); border: none; border-radius: 12px; font-size: 13px; font-weight: 600; cursor: pointer; transition: 0.15s; font-family: inherit; }
.aw-btn-primary:hover { background: rgb(21, 101, 192); }
.aw-btn-secondary { padding: 10px 24px; background: rgba(255, 255, 255, 0.8); color: rgb(26, 43, 76); border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 12px; font-size: 13px; font-weight: 500; cursor: pointer; transition: 0.15s; font-family: inherit; }
.aw-btn-secondary:hover { background: rgb(255, 255, 255); }
.aw-btn-start { padding: 12px 32px; font-size: 15px; border-radius: 14px; }
.aw-ai-optimize-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 12px 14px; min-width: 64px; background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(30, 136, 229, 0.05)); border: 1px solid rgba(30, 136, 229, 0.2); border-radius: 14px; cursor: pointer; transition: 0.2s; flex-shrink: 0; color: rgb(30, 136, 229); font-size: 11px; font-weight: 500; }
.aw-ai-optimize-btn:hover { background: linear-gradient(135deg, rgba(30, 136, 229, 0.18), rgba(30, 136, 229, 0.1)); border-color: rgba(30, 136, 229, 0.35); transform: translateY(-1px); box-shadow: rgba(30, 136, 229, 0.15) 0px 4px 12px; }
.aw-ai-optimize-btn:active { transform: translateY(0px); }
.aw-ai-optimize-btn.optimizing { opacity: 0.7; pointer-events: none; }
.aw-ai-optimize-btn.optimizing span:first-child { animation: 1s ease-in-out 0s infinite normal none running sparkle; }
@keyframes sparkle { 
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
#page-auto-workflow.module-page { overflow-y: auto; }
#page-auto-workflow.module-page > * { flex-shrink: 0; }
.aw-bottom-bar { display: flex; align-items: center; gap: 14px; padding: 18px 24px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 20px; box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 16px; margin-top: 8px; flex-wrap: wrap; flex-shrink: 0; box-sizing: border-box; }
.aw-time-picker { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.checkbox-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 12px; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(0, 0, 0, 0.08); cursor: pointer; font-size: 14px; transition: 0.2s; user-select: none; }
.checkbox-chip:hover { background: rgba(30, 136, 229, 0.08); border-color: rgba(30, 136, 229, 0.2); }
.checkbox-chip:has(input:checked) { background: rgba(30, 136, 229, 0.15); border-color: var(--primary); color: var(--primary); font-weight: 500; }
.checkbox-chip input { display: none; }
.radio-chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; border-radius: 12px; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(0, 0, 0, 0.08); cursor: pointer; font-size: 14px; transition: 0.2s; user-select: none; }
.radio-chip:hover { background: rgba(30, 136, 229, 0.08); border-color: rgba(30, 136, 229, 0.2); }
.radio-chip.active { background: rgba(30, 136, 229, 0.15); border-color: var(--primary); color: var(--primary); font-weight: 500; }
.radio-chip input { display: none; }
.summary-box { background: rgba(30, 136, 229, 0.06); border: 1px solid rgba(30, 136, 229, 0.15); border-radius: 16px; padding: 16px 20px; font-size: 14px; color: rgb(26, 43, 76); line-height: 1.7; margin: 20px 0px; }
.btn-primary { background: rgb(30, 136, 229); color: white; border: none; border-radius: 16px; padding: 14px 32px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.2s; font-family: inherit; }
.btn-primary:hover { background: rgb(21, 101, 192); transform: scale(1.02); }
.btn-primary:disabled { background: rgb(176, 190, 197); cursor: not-allowed; transform: none; }
.btn-secondary { background: rgba(255, 255, 255, 0.6); color: rgb(26, 43, 76); border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 16px; padding: 14px 32px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.2s; font-family: inherit; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.9); }
.btn-row { display: flex; gap: 12px; margin-top: 8px; }
.progress-bar-wrap { background: rgba(158, 158, 158, 0.12); border-radius: 12px; height: 12px; overflow: hidden; margin: 20px 0px; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, rgb(30, 136, 229), rgb(66, 165, 245)); border-radius: 12px; transition: width 0.5s; width: 0%; }
.progress-text { font-size: 14px; color: rgb(26, 43, 76); font-weight: 500; text-align: center; }
.result-preview { width: 100%; border-collapse: separate; border-spacing: 0px; margin-top: 16px; border-radius: 14px; overflow: hidden; }
.result-preview th { background: rgba(30, 136, 229, 0.1); padding: 10px 14px; font-size: 12px; color: rgb(30, 136, 229); font-weight: 600; text-align: left; }
.result-preview td { padding: 10px 14px; font-size: 13px; color: rgb(26, 43, 76); border-bottom: 1px solid rgba(0, 0, 0, 0.04); }
.result-preview tr:last-child td { border-bottom: none; }
.result-preview tr:hover td { background: rgba(255, 255, 255, 0.5); }
.download-area { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding: 20px; background: rgba(76, 175, 80, 0.06); border: 1px solid rgba(76, 175, 80, 0.15); border-radius: 16px; }
.download-area-icon { font-size: 40px; flex-shrink: 0; }
.download-area-info h4 { font-size: 14px; font-weight: 600; color: rgb(26, 43, 76); }
.download-area-info p { font-size: 12px; color: rgb(90, 110, 138); margin-top: 4px; }
.aicall-tab { padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 500; color: rgb(90, 110, 138); cursor: pointer; transition: 0.2s; background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(0, 0, 0, 0.06); }
.aicall-tab:hover { background: rgba(255, 255, 255, 0.8); }
.aicall-tab.active { background: rgba(30, 136, 229, 0.15); color: rgb(30, 136, 229); border-color: rgba(30, 136, 229, 0.3); }
.aicall-entry-card { background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 16px; padding: 20px 16px; text-align: center; cursor: pointer; transition: 0.2s; }
.aicall-entry-card:hover { background: rgba(255, 255, 255, 0.85); transform: translateY(-2px); box-shadow: rgba(0, 0, 0, 0.06) 0px 4px 16px; }
.aicall-entry-icon { font-size: 28px; margin-bottom: 10px; }
.aicall-entry-title { font-size: 14px; font-weight: 600; color: rgb(26, 43, 76); margin-bottom: 4px; }
.aicall-entry-desc { font-size: 11px; color: rgb(90, 110, 138); }
.aicall-stat-card { background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 16px; padding: 16px; transition: 0.2s; }
.aicall-stat-card:hover { background: rgba(255, 255, 255, 0.8); }
.aicall-stat-label { font-size: 12px; color: rgb(90, 110, 138); margin-bottom: 4px; }
.aicall-stat-value { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.aicall-stat-chart { opacity: 0.7; }
.aicall-quick-card { background: rgba(255, 255, 255, 0.45); border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 12px; padding: 14px 10px; text-align: center; cursor: pointer; transition: 0.2s; }
.aicall-quick-card:hover { background: rgba(255, 255, 255, 0.75); transform: translateY(-1px); }
.aicall-record-tab { padding: 5px 14px; border-radius: 16px; font-size: 12px; cursor: pointer; background: rgb(255, 255, 255); color: rgb(90, 110, 138); border: 1px solid rgba(0, 0, 0, 0.06); transition: 0.2s; }
.aicall-record-tab.active { background: rgba(30, 136, 229, 0.15); color: rgb(30, 136, 229); border-color: rgba(30, 136, 229, 0.3); }
#aicall-cache-slider::before, #aicall-qa-slider::before { content: ""; position: absolute; height: 16px; width: 16px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.2s; }
#aicall-cache-slider::before { left: 21px; }
#aicall-qa-slider::before { left: 3px; }
.map-picker-overlay { display: none; position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(4px); z-index: 9000; align-items: center; justify-content: center; }
.map-picker-overlay.active { display: flex; }
.map-picker-card { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 60px; width: 560px; max-width: 90vw; padding: 28px; animation: 0.3s ease 0s 1 normal none running fadeInUp; }
.map-picker-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.map-picker-header h3 { font-size: 18px; font-weight: 700; color: rgb(26, 43, 76); }
.map-picker-close { width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer; background: rgba(0, 0, 0, 0.06); font-size: 18px; color: rgb(90, 110, 138); transition: 0.2s; display: flex; align-items: center; justify-content: center; }
.map-picker-close:hover { background: rgba(0, 0, 0, 0.12); }
.map-picker-canvas { width: 100%; height: 320px; border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, rgb(232, 245, 233) 0%, rgb(200, 230, 201) 30%, rgb(165, 214, 167) 60%, rgb(129, 199, 132) 100%); position: relative; cursor: crosshair; border: 1px solid rgba(0, 0, 0, 0.08); }
.map-picker-canvas .map-grid-line { position: absolute; background: rgba(0, 0, 0, 0.04); }
.map-picker-canvas .map-road { position: absolute; background: rgba(255, 255, 255, 0.6); border-radius: 2px; }
.map-pin { position: absolute; transform: translate(-50%, -100%); font-size: 28px; display: none; filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 2px 4px); z-index: 10; transition: left 0.1s, top 0.1s; }
.map-pin.active { display: block; }
.map-pin-pulse { position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; border-radius: 50%; background: rgba(30, 136, 229, 0.3); animation: 1.5s ease 0s infinite normal none running mapPulse; }
@keyframes mapPulse { 
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(2.5); opacity: 0; }
}
.map-picker-info { margin-top: 12px; padding: 12px 16px; background: rgba(30, 136, 229, 0.06); border-radius: 12px; font-size: 13px; color: rgb(26, 43, 76); min-height: 40px; border: 1px solid rgba(30, 136, 229, 0.1); }
.map-picker-info .coord { color: rgb(30, 136, 229); font-weight: 600; }
.map-picker-btns { display: flex; gap: 12px; margin-top: 16px; justify-content: flex-end; }
.toast { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); padding: 12px 20px; border-radius: 16px; box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 20px; border: 1px solid rgba(255, 255, 255, 0.8); color: rgb(26, 43, 76); font-size: 13px; font-family: inherit; animation: 0.3s ease 0s 1 normal none running toastIn, 0.3s ease 2.7s 1 normal forwards running toastOut; max-width: 320px; }
@keyframes toastIn { 
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0px); }
}
@keyframes toastOut { 
  0% { opacity: 1; transform: translateX(0px); }
  100% { opacity: 0; transform: translateX(40px); }
}
@media (max-width: 1024px) {
  .sidebar { width: 72px; padding: 24px 8px; gap: 20px; }
  .logo-area { padding-left: 4px; }
  .logo-sub, .nav-item span, .project-label, .project-item span, .nav-group-label { display: none; }
  .nav-item { justify-content: center; padding: 12px; }
  .nav-item i { width: auto; }
  .project-item { justify-content: center; padding: 10px; }
  #page-chat { flex-direction: column; }
  .chat-panel { flex: 0 0 auto; height: 55vh; }
  .right-panel { flex: 0 0 auto; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .workflow-page-grid { grid-template-columns: 1fr; }
}
.vc-script-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.vc-script-idx { width: 24px; height: 24px; border-radius: 50%; background: rgba(30, 136, 229, 0.15); color: rgb(30, 136, 229); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex-shrink: 0; }
.vc-script-input { flex: 1 1 0%; }
.vc-ref-line { display: flex; align-items: center; gap: 8px; padding: 6px 0px; border-bottom: 1px solid rgba(0, 0, 0, 0.04); font-size: 13px; }
.vc-ref-idx { width: 22px; height: 22px; border-radius: 50%; background: rgba(30, 136, 229, 0.15); color: rgb(30, 136, 229); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.vc-avatar-item { width: 80px; text-align: center; cursor: pointer; border: 2px solid transparent; border-radius: 12px; padding: 10px 6px; transition: 0.2s; background: rgba(255, 255, 255, 0.5); }
.vc-avatar-item:hover { background: rgba(255, 255, 255, 0.8); }
.vc-avatar-item.selected { border-color: rgb(30, 136, 229); background: rgba(30, 136, 229, 0.08); }
.vc-avatar-img { font-size: 32px; margin-bottom: 4px; }
.vc-avatar-name { font-size: 11px; color: rgb(26, 43, 76); }
.vc-avatar-upload { border: 2px dashed rgba(0, 0, 0, 0.12); }
.vc-storyboard-item { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.5); margin-bottom: 6px; font-size: 12px; }
.vc-storyboard-idx { width: 22px; height: 22px; border-radius: 50%; background: rgba(30, 136, 229, 0.15); color: rgb(30, 136, 229); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.vc-storyboard-text { flex: 1 1 0%; color: rgb(26, 43, 76); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vc-storyboard-material { color: rgb(90, 110, 138); font-size: 11px; flex-shrink: 0; }
.vc-storyboard-add { background: none; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 6px; cursor: pointer; font-size: 12px; padding: 2px 6px; transition: 0.2s; }
.vc-storyboard-add:hover { background: rgba(30, 136, 229, 0.1); border-color: rgb(30, 136, 229); }
.ae-blink { animation: 1.2s ease 0s infinite normal none running aeBlink; }
@keyframes aeBlink { 
  0%, 20% { opacity: 0; }
  50% { opacity: 1; }
  80%, 100% { opacity: 0; }
}