File size: 1,199 Bytes
227c43a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* Chart containers */
.chart-container {
    height: 300px !important;
    width: 100%;
    position: relative;
  }
  
  /* Bloch sphere container */
  #quantum-state-viz {
    height: 300px !important;
    width: 100%;
    background-color: #141414;
    border-radius: var(--border-radius-md);
  }
  
  /* Circuit visualization */
  .circuit-svg {
    max-width: 100%;
    overflow-x: auto;
    background-color: #fff;
    padding: 1rem;
    border-radius: var(--border-radius-md);
  }
  
  /* Make sure Canvas elements expand properly */
  canvas.chart-container {
    height: 300px !important;
    width: 100% !important;
  }

  /* QRNG visualization */
  .application-card {
    transition: all 0.2s ease;
  }

  .application-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .qubit-row {
    transition: background-color 0.2s ease;
  }

  .qubit-row:hover {
    background-color: rgba(0,0,0,0.08) !important;
  }

  #qrng-enhanced-viz .nav-tabs .nav-link {
    transition: all 0.3s ease;
  }

  #qrng-enhanced-viz .nav-link:hover:not(.active) {
    background-color: rgba(255,255,255,0.2);
  }