File size: 5,140 Bytes
cdcd73e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* Custom styling for the mystical theme */
.stApp {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2f 100%);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

/* Card styling */
.cosmic-card {
    background: rgba(28, 28, 28, 0.95);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cosmic-card:hover {
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.4);
    transform: translateY(-2px);
}

/* Text styling */
.glow-text {
    color: #FF4081;
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

h1, h2, h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
}

p, li {
    color: #E0E0E0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Chart container styling */
.chart-container {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
    padding: 20px;
    background: rgba(28, 28, 28, 0.8);
    transition: all 0.3s ease;
}

.chart-container:hover {
    box-shadow: 0 0 40px rgba(156, 39, 176, 0.5);
}

/* Form inputs styling */
.stTextInput > div > div, .stDateInput > div > div, .stTimeInput > div > div {
    background: rgba(40, 40, 40, 0.9) !important;
    border: 1px solid rgba(156, 39, 176, 0.5) !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease;
}

.stTextInput > div > div:focus-within, 
.stDateInput > div > div:focus-within, 
.stTimeInput > div > div:focus-within {
    border-color: #FF4081 !important;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.3) !important;
}

/* Button styling */
.stButton > button {
    background: linear-gradient(135deg, #9C27B0 0%, #FF4081 100%) !important;
    color: white !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
}

.stButton > button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4) !important;
}

.stButton > button:active {
    transform: translateY(1px) !important;
}

/* Labels and text inputs */
.stTextInput label, .stDateInput label, .stTimeInput label {
    color: #FFFFFF !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

/* Loading spinner */
.stSpinner > div {
    border-color: #FF4081 !important;
}

/* Error messages */
.stAlert {
    background: rgba(244, 67, 54, 0.1) !important;
    border-color: rgba(244, 67, 54, 0.5) !important;
    color: #FFFFFF !important;
}

/* Success messages */
.stSuccess {
    background: rgba(76, 175, 80, 0.1) !important;
    border-color: rgba(76, 175, 80, 0.5) !important;
    color: #FFFFFF !important;
}

/* Estilo especial para o card do signo solar */
.signo-solar-card {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(255, 64, 129, 0.2) 100%);
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(156, 39, 176, 0.5);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.signo-solar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
}

.signo-symbol {
    font-size: 4rem;
    color: #FF4081;
    text-shadow: 0 0 20px rgba(255, 64, 129, 0.5);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.signo-nome {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin: 1rem 0;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.signo-grau {
    font-size: 1.2rem;
    color: #E0E0E0;
    font-family: 'Courier New', monospace;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Media Queries para Responsividade */
@media screen and (max-width: 768px) {
    .glow-text {
        font-size: 1.8rem;
    }

    .cosmic-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .signo-symbol {
        font-size: 3rem;
    }

    .signo-nome {
        font-size: 2rem;
    }

    .chart-container {
        padding: 10px;
    }

    .stButton > button {
        padding: 10px 20px !important;
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .glow-text {
        font-size: 1.5rem;
    }

    .cosmic-card {
        padding: 10px;
        margin-bottom: 10px;
    }

    p, li {
        font-size: 1rem;
    }

    .signo-symbol {
        font-size: 2.5rem;
    }

    .signo-nome {
        font-size: 1.8rem;
    }

    .signo-grau {
        font-size: 1rem;
    }

    .stTextInput > div > div, 
    .stDateInput > div > div, 
    .stTimeInput > div > div {
        font-size: 1rem !important;
    }
}