<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* EduGenius AI - æ•™è‚²ä¸šåŠ¡æµç¨‹ç»„ä»¶ */

/* === ä»»åŠ¡æµç¨‹ç»„ä»¶ === */
.task-flow {
  background: var(--color-white);
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--space-normal);
  overflow: hidden;
  transition: all var(--animation-normal);
}

.task-flow:hover {
  box-shadow: var(--shadow-normal);
  transform: translateY(-1px);
}

.task-flow-header {
  padding: var(--space-normal);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.task-priority {
  padding: 4px 8px;
  border-radius: var(--radius-small);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.task-priority--urgent {
  background: var(--color-problem);
  color: white;
  animation: pulse-urgent 2s infinite;
}

.task-priority--important {
  background: var(--color-attention);
  color: white;
}

.task-priority--normal {
  background: var(--color-normal);
  color: white;
}

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

.task-deadline {
  font-size: 12px;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.task-flow-body {
  padding: var(--space-normal);
}

.task-info {
  margin-bottom: var(--space-normal);
}

.task-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-tiny);
  display: flex;
  align-items: center;
  gap: var(--space-small);
}

.task-description {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-bottom: var(--space-normal);
}

/* === é”€å”®æµç¨‹æ­¥éª¤ === */
.sales-steps {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-normal);
  overflow-x: auto;
  padding: var(--space-small) 0;
}

.sales-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  text-align: center;
  margin-right: var(--space-big);
}

.sales-step:last-child {
  margin-right: 0;
}

.sales-step::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 100%;
  width: var(--space-big);
  height: 2px;
  background: var(--color-border);
  z-index: 1;
}

.sales-step:last-child::after {
  display: none;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: var(--space-tiny);
  z-index: 2;
  position: relative;
}

.step-icon--completed {
  background: var(--color-good);
  color: white;
}

.step-icon--active {
  background: var(--color-main);
  color: var(--color-text);
  box-shadow: 0 0 0 3px rgba(253, 208, 0, 0.3);
}

.step-icon--pending {
  background: var(--color-border);
  color: var(--color-text-light);
}

.step-label {
  font-size: 10px;
  color: var(--color-text-light);
  max-width: 70px;
  line-height: 1.2;
}

.step-label--active {
  color: var(--color-text);
  font-weight: 500;
}

.sales-step--completed::after {
  background: var(--color-good);
}

.sales-step--active::after {
  background: var(--color-main);
}

/* === å­¦å‘˜ç®¡ç†å¡ç‰‡ === */
.student-card {
  background: var(--color-white);
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-light);
  padding: var(--space-normal);
  border-left: 4px solid;
  margin-bottom: var(--space-normal);
  transition: all var(--animation-normal);
}

.student-card--active {
  border-left-color: var(--color-good);
}

.student-card--renewal-needed {
  border-left-color: var(--color-attention);
  background: linear-gradient(135deg, #fff9f0, var(--color-white));
}

.student-card--low-hours {
  border-left-color: var(--color-problem);
  background: linear-gradient(135deg, #fef7f7, var(--color-white));
}

.student-card:hover {
  box-shadow: var(--shadow-normal);
  transform: translateY(-1px);
}

.student-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-small);
}

.student-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.student-stage {
  font-size: 11px;
  color: var(--color-text-light);
}

.student-status {
  padding: 2px 6px;
  border-radius: var(--radius-small);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
}

.student-status--active {
  background: var(--color-good);
  color: white;
}

.student-status--renewal {
  background: var(--color-attention);
  color: white;
}

.student-status--risk {
  background: var(--color-problem);
  color: white;
}

.student-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-small);
  margin-bottom: var(--space-normal);
}

.student-detail {
  text-align: center;
}

.detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.detail-value--warning {
  color: var(--color-attention);
}

.detail-value--danger {
  color: var(--color-problem);
}

.detail-label {
  font-size: 10px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.student-actions {
  display: flex;
  gap: var(--space-small);
  justify-content: flex-end;
}

/* === Demoç®¡ç†ç»„ä»¶ === */
.demo-schedule {
  background: var(--color-white);
  border-radius: var(--radius-normal);
  box-shadow: var(--shadow-light);
  margin-bottom: var(--space-big);
}

.demo-header {
  padding: var(--space-normal) var(--space-big);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.demo-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-small);
}

.demo-timeline {
  padding: var(--space-normal);
}

.demo-slot {
  display: flex;
  align-items: center;
  gap: var(--space-normal);
  padding: var(--space-normal);
  border-radius: var(--radius-small);
  margin-bottom: var(--space-small);
  border: 1px solid var(--color-border);
  transition: all var(--animation-fast);
}

.demo-slot:hover {
  background: var(--color-bg);
  border-color: var(--color-main);
}

.demo-slot--booked {
  background: var(--color-main-light);
  border-color: var(--color-main);
}

.demo-slot--completed {
  background: #f0f9ff;
  border-color: var(--color-good);
}

.demo-time {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  min-width: 80px;
}

.demo-info {
  flex: 1;
}

.demo-student {
  font-size: 13px;
  color: var(--color-text);
  margin-bottom: 2px;
}

.demo-teacher {
  font-size: 11px;
  color: var(--color-text-light);
}

.demo-status {
  padding: 4px 8px;
  border-radius: var(--radius-small);
  font-size: 10px;
  font-weight: 500;
}

.demo-status--available {
  background: var(--color-bg);
  color: var(--color-text-light);
  border: 1px dashed var(--color-border);
}

.demo-status--booked {
  background: var(--color-main);
  color: var(--color-text);
}

.demo-status--completed {
  background: var(--color-good);
  color: white;
}

/* === AIå»ºè®®ç»„ä»¶ === */
.ai-suggestion {
  background: linear-gradient(135deg, #f8fafc, var(--color-white));
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-normal);
  padding: var(--space-normal);
  margin-bottom: var(--space-normal);
  position: relative;
}

.ai-suggestion::before {
  content: 'ðŸ¤–';
  position: absolute;
  top: var(--space-normal);
  left: var(--space-normal);
  font-size: 16px;
}

.ai-suggestion-content {
  margin-left: var(--space-big);
}

.ai-suggestion-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-tiny);
  display: flex;
  align-items: center;
  gap: var(--space-small);
}

.ai-confidence {
  padding: 2px 6px;
  background: #e2e8f0;
  color: #64748b;
  border-radius: var(--radius-small);
  font-size: 9px;
  font-weight: 500;
}

.ai-suggestion-text {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-bottom: var(--space-small);
}

.ai-suggestion-actions {
  display: flex;
  gap: var(--space-small);
}

.ai-btn {
  padding: 4px 8px;
  font-size: 11px;
  border-radius: var(--radius-small);
  border: none;
  cursor: pointer;
  transition: all var(--animation-fast);
}

.ai-btn--apply {
  background: var(--color-main);
  color: var(--color-text);
}

.ai-btn--apply:hover {
  background: var(--color-main-dark);
}

.ai-btn--dismiss {
  background: var(--color-bg);
  color: var(--color-text-light);
}

.ai-btn--dismiss:hover {
  background: var(--color-border);
}

/* === ç§»åŠ¨ç«¯é€‚é… === */
@media (max-width: 768px) {
  .sales-steps {
    justify-content: flex-start;
    padding-bottom: var(--space-normal);
  }
  
  .sales-step {
    min-width: 60px;
    margin-right: var(--space-normal);
  }
  
  .sales-step::after {
    width: var(--space-normal);
  }
  
  .student-details {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .demo-slot {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-small);
  }
  
  .demo-time {
    min-width: auto;
    text-align: center;
  }
  
  .ai-suggestion-content {
    margin-left: 0;
    margin-top: var(--space-big);
  }
  
  .ai-suggestion::before {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: var(--space-small);
  }
}
</pre></body></html>