:root {
    --bg-page: #F8FAFC;
    --bg-hero-start: #F0FDFA;
    --bg-hero-end: #F1F5F9;
    --bg-card: #FFFFFF;
    --primary-accent: #0D9488;
    --primary-accent-light: #CCFBF1;
    --text-dark: #1E293B;
    --text-medium: #475569;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --error-bg: #FEF2F2;
    --error-text: #DC2626;
    --warning-bg: #FFFBEB;
    --warning-text: #B45309;
    --success-bg: #ECFDF5;
    --success-text: #065F46;
    --speak-color: #3B82F6;
    --pause-color: #F59E0B;
    --stop-color: #EF4444;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4 {
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
  }
  
  h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  h2.section-title {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 1.25rem;
  }
  
  h3.subsection-title {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 0.75rem;
  }
  
  /* Navigation */
  .navbar {
    background-color: var(--bg-card);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem clamp(0.75rem, 3vw, 1rem);
  }
  
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .nav-logo {
    height: 32px;
    width: auto;
  }
  
  .brand-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
  }
  
  /* Navigation Toggle */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    z-index: 1002;
  }
  
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  /* Navigation Slider */
  .nav-slider {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .nav-slider.active {
    right: 0;
  }
  
  .slider-content {
    padding: 1.5rem;
    height: 100%;
  }
  
  .slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .slider-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
  }
  
  .slider-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .slider-link {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s;
  }
  
  .slider-link:hover, .slider-link.active {
    background-color: var(--primary-accent-light);
    color: var(--primary-accent);
  }
  
  /* Overlay when slider is open */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Layout */
  main {
    padding: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  
  .card {
    background-color: var(--bg-card);
    border-radius: 0.75rem;
    padding: clamp(0.75rem, 3vw, 1.25rem);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    width: 100%;
  }
  
  .main-card {
    border-top: 4px solid var(--primary-accent);
  }
  
  .main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }
  
  @media (min-width: 768px) {
    main {
      padding: 1rem;
    }
    .main-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }
  
  /* Form Styles */
  .form-section {
    width: 100%;
  }
  
  .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .input-group {
    margin-bottom: 1.5rem;
  }
  
  .form-section label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 2.5vw, 0.875rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .form-section input, .form-section select, .form-section textarea {
    width: 100%;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    background-color: var(--bg-page);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
  }
  
  .form-section input:focus, .form-section select:focus, .form-section textarea:focus {
    outline: none;
    background-color: white;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px var(--primary-accent-light);
  }
  
  .form-section textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Action Buttons */
  .action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }
  
  .action-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
  
  .speak-button {
    background-color: var(--speak-color);
    color: white;
  }
  
  .speak-button:hover:not(:disabled) {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  
  .pause-button {
    background-color: var(--pause-color);
    color: white;
  }
  
  .pause-button:hover:not(:disabled) {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  }
  
  .resume-button {
    background-color: var(--primary-accent);
    color: white;
  }
  
  .resume-button:hover:not(:disabled) {
    background-color: #0B8378;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  }
  
  .stop-button {
    background-color: var(--stop-color);
    color: white;
  }
  
  .stop-button:hover:not(:disabled) {
    background-color: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  }
  
  .action-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* Results Section */
  .results-section {
    width: 100%;
  }
  
  .results-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  
  /* Status Indicator */
  .status-indicator {
    background: var(--bg-page);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
  }
  
  .status-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  .status-header i {
    color: var(--primary-accent);
    font-size: 1.25rem;
  }
  
  .status-message {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  
  .progress-container {
    width: 100%;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    background-color: var(--primary-accent);
    width: 0%;
    transition: width 0.3s ease;
  }
  
  /* Voice Info */
  .voice-info {
    background: var(--bg-page);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
  }
  
  .voice-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .voice-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .voice-detail:last-child {
    border-bottom: none;
  }
  
  .detail-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.875rem;
  }
  
  .detail-value {
    color: var(--text-medium);
    font-size: 0.875rem;
    text-align: right;
  }
  
  /* Quick Actions */
  .quick-actions {
    background: var(--bg-page);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
  }
  
  .quick-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  
  .quick-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-card);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.8rem;
    text-align: center;
  }
  
  .quick-button:hover {
    background: var(--primary-accent-light);
    border-color: var(--primary-accent);
    transform: translateY(-2px);
  }
  
  .quick-button i {
    font-size: 1.25rem;
    color: var(--primary-accent);
  }
  
  /* Usage Tips */
  .usage-tips {
    background: var(--bg-page);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
  }
  
  .tips-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-card);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
  }
  
  .tip-item i {
    color: var(--primary-accent);
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
  }
  
  .tip-item span {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.4;
  }
  
  /* Message Boxes */
  .message-box {
    padding: clamp(0.5rem, 2vw, 0.75rem);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    width: 100%;
    animation: slideIn 0.3s ease-out;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .error-box {
    background-color: var(--error-bg);
    color: var(--error-text);
    border: 1px solid var(--error-text);
  }
  
  /* Hero Section */
  .hero-section {
    padding: clamp(1.5rem, 5vw, 2.5rem) clamp(0.75rem, 3vw, 1rem) clamp(2rem, 5vw, 3.5rem);
    background-image: linear-gradient(120deg, var(--bg-hero-start), var(--bg-hero-end));
    text-align: center;
    width: 100%;
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(0.75rem, 3vw, 1rem);
  }
  
  .hero-text p {
    font-size: clamp(0.875rem, 3vw, 1.1rem);
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--primary-accent);
    color: white;
    padding: clamp(0.625rem, 2.5vw, 0.75rem) clamp(1.25rem, 4vw, 1.75rem);
    border-radius: 0.5rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    margin-top: 0.5rem;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(13, 148, 136, 0.1);
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 1.5rem clamp(0.75rem, 3vw, 1rem);
    margin-top: 2rem;
    background-color: var(--bg-hero-end);
    border-top: 1px solid var(--border-color);
    width: 100%;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 500;
  }
  
  .disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Content Sections */
  .content-section {
    margin-top: 2rem;
    width: 100%;
  }
  
  .content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }
  
  @media (min-width: 992px) {
    .content-grid {
      grid-template-columns: 1.5fr 1fr;
    }
  }
  
  .content-main, .content-sidebar {
    width: 100%;
  }
  
  /* Information Items */
  .info-item {
    margin-bottom: 2rem;
  }
  
  .info-item:last-child {
    margin-bottom: 0;
  }
  
  .info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
  }
  
  .info-item p {
    color: var(--text-medium);
    line-height: 1.6;
  }
  
  /* Applications Grid */
  .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .application-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-page);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
  }
  
  .app-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-accent-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-accent);
    flex-shrink: 0;
    font-size: 1.25rem;
  }
  
  .app-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
  }
  
  .app-content p {
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Voice Tips & Best Practices Section - Card Spacing (No Hover) */
  .content-sidebar .tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: default; /* Remove pointer cursor */
    user-select: none; /* Prevent text selection */
    pointer-events: none; /* Disable all pointer events */
  }
  
  .content-sidebar .tip-item:last-child {
    margin-bottom: 0;
  }
  
  /* Remove all hover effects */
  .content-sidebar .tip-item:hover {
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-color: var(--border-color);
  }
  
  .content-sidebar .tip-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-accent-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-accent);
    font-size: 1.2rem;
    /* Remove transition */
  }
  
  /* Remove icon hover effects */
  .content-sidebar .tip-item:hover .tip-icon {
    transform: none;
    background-color: var(--primary-accent-light);
    color: var(--primary-accent);
  }
  
  .content-sidebar .tip-content {
    flex: 1;
  }
  
  .content-sidebar .tip-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
  }
  
  .content-sidebar .tip-content p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
  }
  
  /* Tech Info */
  .tech-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .tech-item {
    padding: 0.75rem;
    background: var(--bg-page);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
  }
  
  .tech-item strong {
    color: var(--text-dark);
  }
  
  /* Input Help Text */
  .input-help {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
  }
  
  /* Animations */
  .animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .nav-slider {
      width: 100%;
    }
    
    .input-row {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .action-buttons {
      flex-direction: column;
    }
    
    .action-button {
      width: 100%;
    }
    
    .quick-buttons {
      grid-template-columns: 1fr;
    }
    
    .applications-grid {
      grid-template-columns: 1fr;
    }
    
    .content-sidebar .tip-item {
      padding: 1.25rem;
      margin-bottom: 0.875rem;
      gap: 0.875rem;
    }
    
    .content-sidebar .tip-icon {
      width: 44px;
      height: 44px;
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .action-buttons {
      flex-direction: column;
    }
    
    .content-sidebar .tip-item {
      padding: 1rem;
      margin-bottom: 0.75rem;
      gap: 0.75rem;
      flex-direction: column;
      text-align: center;
    }
    
    .content-sidebar .tip-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
      margin: 0 auto;
    }
  }
  
  /* Disclaimer Box */
  .disclaimer-box {
    background-color: var(--warning-bg);
    border: 1px solid var(--warning-text);
    border-radius: 0.75rem;
    padding: 1.5rem;
  }
  
  .disclaimer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warning-text);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  .disclaimer-text {
    color: var(--warning-text);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Privacy Notice */
  .privacy-notice {
    background-color: var(--success-bg);
    border: 1px solid var(--success-text);
    border-radius: 0.75rem;
    padding: 1.5rem;
  }
  
  .privacy-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-text);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  .privacy-text {
    color: var(--success-text);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Print Styles */
  @media print {
    .navbar,
    .nav-slider,
    .nav-overlay,
    .hero-section,
    .content-section,
    .footer,
    .action-buttons,
    .disclaimer-box,
    .privacy-notice {
      display: none !important;
    }
    
    .main-card {
      border: none;
      box-shadow: none;
      margin: 0;
      padding: 0;
    }
    
    .results-grid {
      display: block;
    }
    
    body {
      background: white;
      color: black;
      font-size: 12pt;
    }
    
    .card {
      background: white;
      border: 1px solid #ccc;
    }
  }
  
  .brand-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .brand-link:hover {
    text-decoration: none;
    color: inherit;
  }
  
  /* Notification Styles */
  .notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    width: 90%;
  }
  
  .notification {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--primary-accent);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .notification.show {
    transform: translateX(0);
    opacity: 1;
  }
  
  .notification.success {
    border-left-color: var(--success-text);
  }
  
  .notification.error {
    border-left-color: var(--error-text);
  }
  
  .notification.info {
    border-left-color: var(--primary-accent);
  }
  
  .notification-icon {
    font-size: 1.25rem;
    margin-top: 0.125rem;
  }
  
  .notification.success .notification-icon {
    color: var(--success-text);
  }
  
  .notification.error .notification-icon {
    color: var(--error-text);
  }
  
  .notification.info .notification-icon {
    color: var(--primary-accent);
  }
  
  .notification-content {
    flex: 1;
  }
  
  .notification-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
  }
  
  .notification-message {
    font-size: 0.8rem;
    color: var(--text-medium);
    line-height: 1.4;
  }
  
  .notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.875rem;
    transition: color 0.2s;
  }
  
  .notification-close:hover {
    color: var(--text-dark);
  }
  
  /* Status message colors */
  .status-message.speaking {
    color: var(--primary-accent);
    font-weight: 600;
  }
  
  .status-message.paused {
    color: var(--pause-color);
    font-weight: 600;
  }
  
  .status-message.stopped {
    color: var(--stop-color);
    font-weight: 600;
  }
  
  .status-message.completed {
    color: var(--success-text);
    font-weight: 600;
  }
  
  /* Progress bar states */
  .progress-bar.paused {
    background-color: var(--pause-color);
    animation-play-state: paused;
  }
  
  .progress-bar.stopped {
    background-color: var(--stop-color);
  }