  .strength-bar {
    height: 4px;
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 2px;
    transition: background-color 0.3s ease;
  }
  
  .strength-bar.weak {
    background-color: #ef4444;
  }
  
  .strength-bar.fair {
    background-color: #f59e0b;
  }
  
  .strength-bar.good {
    background-color: #10b981;
  }
  
  .strength-bar.strong {
    background-color: #059669;
  }
  
  .requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
    transition: color 0.3s ease;
  }
  
  .requirement.met {
    color: #059669;
  }
  
  .requirement.met .req-icon::before {
    content: '✓';
    color: #059669;
  }
  
  .requirement .req-icon::before {
    content: '○';
  }
