File size: 1,488 Bytes
26c817f
 
39e89a9
26c817f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39e89a9
 
26c817f
 
39e89a9
 
26c817f
 
 
39e89a9
 
26c817f
 
39e89a9
91f3de1
 
 
 
 
 
 
 
d397019
 
26c817f
39e89a9
d397019
26c817f
 
d397019
575b38a
 
 
d397019
 
 
575b38a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* Animation for interactive elements */
button, .clickable {
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: translateY(-2px);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* Upload button styles */
input[type="file"] + span {
    transition: all 0.2s ease;
}

input[type="file"]:hover + span {
    background-color: #e5e7eb;
}
/* Race and class card styles */
.race-card, .class-card {
    transition: all 0.3s ease;
}
.race-card:hover, .class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* File upload styling */
input[type="file"] + span::after {
    content: " (DOC/DOCX/JSON)";
    font-size: 0.8em;
    color: #6b7280;
}

/* Generate button animation */
button.bg-primary-500:hover {
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

/* Loading indicator */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}