File size: 3,547 Bytes
67ef373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* Base Styles */
body {
    background-color: #0b0c10; /* Very dark background */
    color: #FF00FF; /* Bright cyan text */
    font-family: 'Roboto', Arial, sans-serif; /* Modern sans-serif font */
    margin: 0;
    padding: 0;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    color: #45a29e; /* Muted cyan for titles */
    text-align: center;
    font-family: 'Raleway', Arial, sans-serif; 
    font-weight: 300; /* Light font weight */
    margin-bottom: 0.5rem;
    animation: glow 1.5s infinite; /* Add the glow animation */
    border-radius: 10px;
}

/* Paragraph and List Styles */
p, ol, ul, dl {
    color: #c5c6c7; /* Light gray for paragraph text */
    line-height: 1.6; /* Improved readability */
    margin: 0 0 1.5rem;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0; /* Space above and below the container */
}

/* Buttons */
.stButton>button {
    background-color: #1f2833; /* Dark background for buttons */
    color: #66fcf1; /* Cyan text for buttons */
    border: 1px solid #66fcf1;
    border-radius: 8px; /* Slightly rounded corners */
    padding: 0.75rem 1.5rem; /* Padding for better clickability */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-size: 1rem; /* Increase font size for better readability */
    font-weight: 500; /* Slightly bolder font weight */
    animation: glow 1.5s infinite;
}

.stButton>button:hover {
    background-color: #45a29e; /* Hover effect */
    color: #0b0c10;
    transform: scale(1.1);
    box-shadow: 0 0 15px #66fcf1, 0 0 30px #45a29e, 0 0 45px #66fcf1;
}

/* Input Fields */
.stTextInput>div>div>input, .stTextArea>div>textarea, .stFileUploader>div>div>input {
    background-color: #1f2833; /* Dark background for inputs */
    color: #66fcf1; /* Cyan text for inputs */
    border: 1px solid #66fcf1;
    border-radius: 5px;
    padding: 0.5rem;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.stTextInput>div>div>input:focus, .stTextArea>div>textarea:focus, .stFileUploader>div>div>input:focus {
    color: #66fcf1; /* Keep cyan text when focused */
    background-color: #0b0c10; /* Maintain dark background when focused */
    border-color: #45a29e;
    outline: none;
}

.stTextInput>div>div>input:hover, .stTextArea>div>textarea:hover, .stFileUploader>div>div>input:hover {
    background-color: #0b0c10;
    border-color: #45a29e;
}

.stTextInput>div>div>input::placeholder, .stTextArea>div>textarea::placeholder {
    color: #c5c6c7; /* Light gray placeholder color */
}

/* App Container */
.stApp {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #0b0c10;
}

.st-ed {
    background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent background */
}

/* Markdown */
.stMarkdown p {
    font-size: 1rem;
    font-weight: 400;
    color: #c5c6c7;
    margin: 0 0 1rem;
    padding: 0;
}

/* Advanced Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px #66fcf1, 0 0 10px #66fcf1, 0 0 20px #66fcf1, 0 0 40px #45a29e;
    }
    50% {
        box-shadow: 0 0 10px #66fcf1, 0 0 20px #66fcf1, 0 0 30px #66fcf1, 0 0 50px #45a29e;
    }
    100% {
        box-shadow: 0 0 5px #66fcf1, 0 0 10px #66fcf1, 0 0 20px #66fcf1, 0 0 40px #45a29e;
    }
}

.stButton>button {
    animation: glow 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stApp {
        padding: 1rem;
    }
}