.stopwatch-content {
    max-width: 600px;
    width: 100%;
  }
  
  .stopwatch-display {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Courier New', monospace;
  }
  
  .stopwatch-controls {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .lap-times {
    width: 100%;
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .lap-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: var(--lap-bg);
    border-radius: 5px;
    margin-bottom: 8px;
    font-size: 1.1rem;
  }
  
  .lap-number {
    font-weight: 600;
    color: var(--primary-color);
  }
  
  @media (max-width: 768px) {
    .stopwatch-display {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    
    .lap-item {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .stopwatch-display {
      font-size: 2.5rem;
    }
    
    .stopwatch-controls {
      gap: 15px;
    }
  }
  
  @media (max-width: 360px) {
    .stopwatch-display {
      font-size: 2rem;
    }
  }