@import '_content/BlazorFastTypewriter/BlazorFastTypewriter.z9maydkoo9.bundle.scp.css';

/* /Components/Pages/AiChat.razor.rz.scp.css */
.chat-page[b-ty4as01tz0] {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 4rem);
  max-height: 900px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header */
.chat-header[b-ty4as01tz0] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content[b-ty4as01tz0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-title[b-ty4as01tz0] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-icon[b-ty4as01tz0] {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.header-title h1[b-ty4as01tz0] {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.subtitle[b-ty4as01tz0] {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.85;
  font-weight: 400;
}

.speed-control-compact[b-ty4as01tz0] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.speed-icon[b-ty4as01tz0] {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.speed-slider[b-ty4as01tz0] {
  width: 80px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1.5px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

  .speed-slider[b-ty4as01tz0]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .speed-slider[b-ty4as01tz0]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

.speed-value[b-ty4as01tz0] {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  min-width: 2rem;
  text-align: right;
}

/* Messages Container */
.chat-messages-container[b-ty4as01tz0] {
  flex: 1;
  overflow-y: auto;
  background: #f9fafb;
  padding: 1.5rem;
}

.chat-messages-inner[b-ty4as01tz0] {
  max-width: 800px;
  margin: 0 auto;
}

/* Welcome Message */
.welcome-message[b-ty4as01tz0] {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #6b7280;
}

.welcome-icon[b-ty4as01tz0] {
  width: 64px;
  height: 64px;
  color: #667eea;
  margin-bottom: 1rem;
}

.welcome-message h2[b-ty4as01tz0] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.5rem;
}

.welcome-message p[b-ty4as01tz0] {
  font-size: 1rem;
  margin: 0 0 2rem;
}

.example-prompts[b-ty4as01tz0] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.example-prompt[b-ty4as01tz0] {
  padding: 0.875rem 1.25rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

  .example-prompt:hover[b-ty4as01tz0] {
    background: #f3f4f6;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  }

/* Messages */
.message-row[b-ty4as01tz0] {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

  .message-row.user-row[b-ty4as01tz0] {
    flex-direction: row-reverse;
  }

.message-avatar[b-ty4as01tz0] {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-row .message-avatar[b-ty4as01tz0] {
  background: #667eea;
  color: white;
}

.ai-row .message-avatar[b-ty4as01tz0] {
  background: #f3f4f6;
  color: #6b7280;
}

.message-avatar svg[b-ty4as01tz0] {
  width: 20px;
  height: 20px;
}

.message-bubble[b-ty4as01tz0] {
  width: 100%;
  max-width: 85%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.message-sender[b-ty4as01tz0] {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  padding: 0 0.5rem;
}

.user-row .message-sender[b-ty4as01tz0] {
  text-align: right;
}

.message-text[b-ty4as01tz0] {
  padding: 0.875rem 1.125rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.user-bubble .message-text[b-ty4as01tz0] {
  background: #667eea;
  color: white;
  border-bottom-right-radius: 4px;
}

.ai-bubble .message-text[b-ty4as01tz0] {
  background: white;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  border-bottom-left-radius: 4px;
}

.message-text p[b-ty4as01tz0] {
  margin: 0 0 0.75rem;
}

  .message-text p:last-child[b-ty4as01tz0] {
    margin-bottom: 0;
  }

.message-text strong[b-ty4as01tz0] {
  font-weight: 600;
  color: inherit;
}

.ai-bubble .message-text strong[b-ty4as01tz0] {
  color: #667eea;
}

.message-text code[b-ty4as01tz0] {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.875em;
}

.user-bubble .message-text code[b-ty4as01tz0] {
  background: rgba(255, 255, 255, 0.2);
}

.message-text ul[b-ty4as01tz0], .message-text ol[b-ty4as01tz0] {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.message-text li[b-ty4as01tz0] {
  margin: 0.375rem 0;
}

/* Typing Indicator */
.typing-indicator[b-ty4as01tz0] {
  display: flex;
  gap: 0.375rem;
  padding: 1rem 1.125rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  width: fit-content;
  margin-left: 48px;
}

.typing-dot[b-ty4as01tz0] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ca3af;
  animation: typing-b-ty4as01tz0 1.4s infinite;
}

  .typing-dot:nth-child(2)[b-ty4as01tz0] {
    animation-delay: 0.2s;
  }

  .typing-dot:nth-child(3)[b-ty4as01tz0] {
    animation-delay: 0.4s;
  }

@keyframes typing-b-ty4as01tz0 {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Input Area */
.chat-input-area[b-ty4as01tz0] {
  padding: 1rem 1.5rem;
  background: white;
  border-top: 1px solid #e5e7eb;
}

.chat-input-container[b-ty4as01tz0] {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chat-input[b-ty4as01tz0] {
  flex: 1;
  padding: 0.875rem 1.125rem;
  border: 1px solid #d1d5db;
  border-radius: 24px;
  font-size: 0.9375rem;
  outline: none;
  transition: all 0.2s;
}

  .chat-input:focus[b-ty4as01tz0] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }

  .chat-input:disabled[b-ty4as01tz0] {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
  }

.send-button[b-ty4as01tz0] {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #667eea;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

  .send-button:hover:not(:disabled)[b-ty4as01tz0] {
    background: #5568d3;
    transform: scale(1.05);
  }

  .send-button:disabled[b-ty4as01tz0] {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
  }

  .send-button svg[b-ty4as01tz0] {
    width: 20px;
    height: 20px;
  }

.chat-disclaimer[b-ty4as01tz0] {
  max-width: 800px;
  margin: 0.75rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .chat-page[b-ty4as01tz0] {
    height: calc(100vh - 2rem);
    border-radius: 0;
  }

  .header-content[b-ty4as01tz0] {
    flex-direction: column;
    align-items: flex-start;
  }

  .speed-control-compact[b-ty4as01tz0] {
    width: 100%;
    justify-content: space-between;
  }

  .chat-messages-container[b-ty4as01tz0] {
    padding: 1rem;
  }

  .message-bubble[b-ty4as01tz0] {
    max-width: 90%;
  }

  .example-prompts[b-ty4as01tz0] {
    max-width: 100%;
  }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero */
.hero[b-iei4c9vlxo] {
  text-align: center;
  padding: 2rem 0 3rem;
  margin-bottom: 2rem;
}

  .hero h1[b-iei4c9vlxo] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #1f2937;
  }

.subtitle[b-iei4c9vlxo] {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
}

/* Demo Sections */
.demo-section[b-iei4c9vlxo] {
  margin-bottom: 3rem;
}

/* Player Container */
.player-container[b-iei4c9vlxo] {
  position: relative;
  margin-bottom: 1rem;
}

  .player-container .demo-box[b-iei4c9vlxo] {
    min-height: 150px;
  }

.demo-section h2[b-iei4c9vlxo] {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #1f2937;
}

.demo-section > p[b-iei4c9vlxo] {
  color: #6b7280;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.demo-box[b-iei4c9vlxo] {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 1rem;
  min-height: 80px;
}

.controls[b-iei4c9vlxo] {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

  .controls button[b-iei4c9vlxo] {
    padding: 0.5rem 1rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background 0.15s;
  }

    .controls button:hover:not(:disabled)[b-iei4c9vlxo] {
      background: #5568d3;
    }

    .controls button:disabled[b-iei4c9vlxo] {
      background: #d1d5db;
      cursor: not-allowed;
    }

/* Features */
.features ul[b-iei4c9vlxo] {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li[b-iei4c9vlxo] {
  padding: 0.5rem 0;
  color: #4b5563;
  line-height: 1.6;
}

  .features li strong[b-iei4c9vlxo] {
    color: #1f2937;
  }

/* Speed Control */
.speed-control[b-iei4c9vlxo] {
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

  .speed-control label[b-iei4c9vlxo] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
  }

  .speed-control input[type="range"][b-iei4c9vlxo] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
  }

    .speed-control input[type="range"][b-iei4c9vlxo]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #667eea;
      cursor: pointer;
    }

    .speed-control input[type="range"][b-iei4c9vlxo]::-moz-range-thumb {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #667eea;
      cursor: pointer;
      border: none;
    }

/* Progress Display */
.progress-display[b-iei4c9vlxo] {
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.progress-bar[b-iei4c9vlxo] {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill[b-iei4c9vlxo] {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
  border-radius: 4px;
}

.progress-text[b-iei4c9vlxo] {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* Seek Controls */
.seek-controls[b-iei4c9vlxo] {
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.seek-bar-container[b-iei4c9vlxo] {
  margin-bottom: 1rem;
}

  .seek-bar-container label[b-iei4c9vlxo] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
  }

.seek-bar[b-iei4c9vlxo] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e5e7eb;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

  .seek-bar[b-iei4c9vlxo]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

    .seek-bar[b-iei4c9vlxo]::-webkit-slider-thumb:hover {
      transform: scale(1.1);
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    }

  .seek-bar[b-iei4c9vlxo]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }

    .seek-bar[b-iei4c9vlxo]::-moz-range-thumb:hover {
      transform: scale(1.1);
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    }

.seek-buttons[b-iei4c9vlxo] {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

  .seek-buttons button[b-iei4c9vlxo] {
    padding: 0.5rem 1rem;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
  }

    .seek-buttons button:hover[b-iei4c9vlxo] {
      background: #667eea;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

.seek-info[b-iei4c9vlxo] {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  text-align: center;
}

/* Code Sample */
.code-sample[b-iei4c9vlxo] {
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

  .code-sample pre[b-iei4c9vlxo] {
    margin: 0;
    padding: 1.25rem;
    background: #1f2937;
    color: #e5e7eb;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .code-sample code[b-iei4c9vlxo] {
    font-family: inherit;
    color: inherit;
    background: none;
    padding: 0;
  }

/* API Reference */
.api-reference[b-iei4c9vlxo] {
  margin-top: 2rem;
}

.api-section[b-iei4c9vlxo] {
  margin-bottom: 2.5rem;
}

  .api-section h3[b-iei4c9vlxo] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #1f2937;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
  }

.api-table[b-iei4c9vlxo] {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

  .api-table thead[b-iei4c9vlxo] {
    background: #f9fafb;
  }

  .api-table th[b-iei4c9vlxo] {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e5e7eb;
  }

  .api-table td[b-iei4c9vlxo] {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 0.9375rem;
  }

  .api-table tbody tr:last-child td[b-iei4c9vlxo] {
    border-bottom: none;
  }

  .api-table tbody tr:hover[b-iei4c9vlxo] {
    background: #f9fafb;
  }

  .api-table code[b-iei4c9vlxo] {
    background: #f3f4f6;
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: #667eea;
    font-weight: 600;
  }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1[b-iei4c9vlxo] {
    font-size: 2rem;
  }

  .hero-subtitle[b-iei4c9vlxo] {
    font-size: 1rem;
  }

  .features-grid[b-iei4c9vlxo] {
    grid-template-columns: 1fr;
  }

  .demo-section[b-iei4c9vlxo] {
    padding: 1.5rem;
  }

  .api-table[b-iei4c9vlxo] {
    font-size: 0.8125rem;
  }

    .api-table th[b-iei4c9vlxo],
    .api-table td[b-iei4c9vlxo] {
      padding: 0.625rem 0.75rem;
    }
}

/* Typewriter Container Styles */
.type-writer-container[b-iei4c9vlxo] {
  line-height: 1.7;
}

  .type-writer-container h2[b-iei4c9vlxo],
  .type-writer-container h3[b-iei4c9vlxo],
  .type-writer-container h4[b-iei4c9vlxo] {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .type-writer-container p[b-iei4c9vlxo] {
    margin-bottom: 1rem;
  }

  .type-writer-container ul[b-iei4c9vlxo],
  .type-writer-container ol[b-iei4c9vlxo] {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }

  .type-writer-container li[b-iei4c9vlxo] {
    margin-bottom: 0.5rem;
  }

  .type-writer-container a[b-iei4c9vlxo] {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s;
  }

    .type-writer-container a:hover[b-iei4c9vlxo] {
      color: #5568d3;
      text-decoration: underline;
    }

  .type-writer-container code[b-iei4c9vlxo] {
    background: #f3f4f6;
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: #667eea;
    font-weight: 600;
  }

/* AI Chat Demo Styles */
.chat-container[b-iei4c9vlxo] {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.chat-messages[b-iei4c9vlxo] {
  max-height: 500px;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f9fafb;
}

.chat-message[b-iei4c9vlxo] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: slideIn-b-iei4c9vlxo 0.3s ease;
}

@keyframes slideIn-b-iei4c9vlxo {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message-header[b-iei4c9vlxo] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.message-time[b-iei4c9vlxo] {
  color: #9ca3af;
  font-size: 0.75rem;
}

.message-content[b-iei4c9vlxo] {
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  line-height: 1.6;
  max-width: 85%;
}

.user-message .message-content[b-iei4c9vlxo] {
  background: #667eea;
  color: white;
  align-self: flex-end;
  margin-left: auto;
}

.ai-message .message-content[b-iei4c9vlxo] {
  background: white;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  align-self: flex-start;
}

.user-message[b-iei4c9vlxo] {
  align-items: flex-end;
}

.ai-message[b-iei4c9vlxo] {
  align-items: flex-start;
}

.chat-input-container[b-iei4c9vlxo] {
  border-top: 1px solid #e5e7eb;
  background: white;
  padding: 1rem;
}

  .chat-input-container .speed-control[b-iei4c9vlxo] {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
  }

.chat-input[b-iei4c9vlxo] {
  display: flex;
  gap: 0.75rem;
}

  .chat-input input[type="text"][b-iei4c9vlxo] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s;
  }

    .chat-input input[type="text"]:focus[b-iei4c9vlxo] {
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .chat-input input[type="text"]:disabled[b-iei4c9vlxo] {
      background: #f3f4f6;
      cursor: not-allowed;
    }

  .chat-input button[b-iei4c9vlxo] {
    padding: 0.75rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
  }

    .chat-input button:hover:not(:disabled)[b-iei4c9vlxo] {
      background: #5568d3;
      transform: translateY(-1px);
    }

    .chat-input button:disabled[b-iei4c9vlxo] {
      background: #d1d5db;
      cursor: not-allowed;
      transform: none;
    }

/* Scrollbar styles for chat messages */
.chat-messages[b-iei4c9vlxo]::-webkit-scrollbar {
  width: 8px;
}

.chat-messages[b-iei4c9vlxo]::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 4px;
}

.chat-messages[b-iei4c9vlxo]::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 4px;
}

  .chat-messages[b-iei4c9vlxo]::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
  }
/* /Components/TypewriterControls.razor.rz.scp.css */
.typewriter-player[b-kklduabydc] {
  width: 100%;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

  .typewriter-player.overlay[b-kklduabydc] {
    background: #f8f9fa;
  }

/* Progress Bar */
.player-progress[b-kklduabydc] {
  margin-bottom: 0.5rem;
}

.progress-bar[b-kklduabydc] {
  position: relative;
  height: 5px;
  background: #e5e7eb;
  border-radius: 2.5px;
  overflow: visible;
  cursor: pointer;
  margin-bottom: 0.375rem;
}

.progress-fill[b-kklduabydc] {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2.5px;
  transition: width 0.1s linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
}

.progress-scrubber[b-kklduabydc] {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 20px;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

  .progress-scrubber[b-kklduabydc]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 1;
  }

  .progress-scrubber[b-kklduabydc]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

.progress-time[b-kklduabydc] {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

/* Control Buttons */
.player-controls[b-kklduabydc] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-btn[b-kklduabydc] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #667eea;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

  .control-btn:hover:not(:disabled)[b-kklduabydc] {
    background: #5568d3;
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
  }

  .control-btn:active:not(:disabled)[b-kklduabydc] {
    transform: scale(0.95);
  }

  .control-btn:disabled[b-kklduabydc] {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
  }

  .control-btn svg[b-kklduabydc] {
    width: 20px;
    height: 20px;
  }

.play-btn[b-kklduabydc],
.pause-btn[b-kklduabydc] {
  width: 48px;
  height: 48px;
  background: #667eea;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.35);
}

  .play-btn:hover:not(:disabled)[b-kklduabydc],
  .pause-btn:hover:not(:disabled)[b-kklduabydc] {
    background: #5568d3;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.45);
  }

  .play-btn svg[b-kklduabydc] {
    width: 24px;
    height: 24px;
  }

  .pause-btn svg[b-kklduabydc] {
    width: 24px;
    height: 24px;
  }

/* Speed Control */
.speed-control[b-kklduabydc] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  padding: 0.5rem 0.75rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 20px;
}

  .speed-control label[b-kklduabydc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    cursor: pointer;
  }

.speed-icon[b-kklduabydc] {
  width: 18px;
  height: 18px;
  color: #667eea;
}

.speed-slider[b-kklduabydc] {
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: rgba(102, 126, 234, 0.3);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

  .speed-slider[b-kklduabydc]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
  }

  .speed-slider[b-kklduabydc]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: none;
  }

.speed-value[b-kklduabydc] {
  font-size: 0.875rem;
  font-weight: 600;
  color: #667eea;
  min-width: 2.5rem;
  text-align: right;
}

/* Responsive */
@media (max-width: 640px) {
  .player-controls[b-kklduabydc] {
    gap: 0.375rem;
  }

  .control-btn[b-kklduabydc] {
    width: 36px;
    height: 36px;
  }

  .play-btn[b-kklduabydc],
  .pause-btn[b-kklduabydc] {
    width: 44px;
    height: 44px;
  }

  .speed-slider[b-kklduabydc] {
    width: 60px;
  }

  .speed-control[b-kklduabydc] {
    padding: 0.375rem 0.5rem;
  }
}
