File size: 1,275 Bytes
52de2ff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
      font-family: "Roboto", sans-serif;
      background-color: #f0f9f4;
      scroll-behavior: smooth;
    }
    .tab-btn {
      @apply px-5 py-3 rounded-lg text-green-900 font-semibold transition-colors duration-300;
    }
    .tab-btn.active {
      @apply bg-green-600 text-white shadow-lg;
    }
    .tab-btn:hover:not(.active) {
      @apply bg-green-200;
    }
    .output {
      @apply mt-4 p-5 bg-white rounded-lg shadow-md text-gray-800;
      min-height: 4rem;
    }
    .metrics > div {
      @apply bg-white rounded-lg shadow p-6 text-center text-green-900 font-semibold;
      transition: transform 0.3s ease;
    }
    .metrics > div:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 15px rgba(34, 197, 94, 0.4);
    }
    /* Animate fade-in */
    .fade-in {
      animation: fadeInUp 0.8s ease forwards;
      opacity: 0;
      transform: translateY(20px);
    }
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    /* Scrollbar for chat answer */
    #answer-container::-webkit-scrollbar {
      width: 8px;
    }
    #answer-container::-webkit-scrollbar-thumb {
      background-color: #34d399;
      border-radius: 10px;
    }