File size: 1,000 Bytes
22feb09
 
 
 
 
 
 
 
9f9343a
 
22feb09
 
9f9343a
 
22feb09
 
 
 
9f9343a
 
22feb09
 
9f9343a
 
22feb09
 
 
9f9343a
22feb09
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Cosmic theme animations */
@keyframes cosmic-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(124, 58, 237, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
    }
}

.cosmic-pulse {
    animation: cosmic-pulse 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(31, 41, 55, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 58, 237, 0.8);
}

/* Tab styling */
.tab-active {
    background-color: rgba(31, 41, 55, 0.9) !important;
    border-bottom: 2px solid #7c3aed;
}

.tab-inactive {
    background-color: rgba(31, 41, 55, 0.7) !important;
}

/* Smooth transitions */
.smooth-transition {
    transition: all 0.3s ease;
}

/* Cosmic gradient background */
.celestial-bg {
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}