File size: 1,668 Bytes
d1a9f2c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Background color */
body {
    background-color: #f0f8ff; 
}

/* Header styling */
.header {
    font-family: 'Courier New', Courier, monospace;
    font-size: 2em;
    color: #1e3d59; /* Dark blue color */
    text-align: center;
    margin-top: 20px;
    animation: fadeIn 2s ease-in-out;
}

/* Content styling */
.content {
    font-family: Arial, sans-serif;
    font-size: 1.2em;
    color: #4a4a4a; /* Dark gray color */
    text-align: center;
    margin: 20px;
    animation: slideIn 1s ease-in-out;
}

/* Text area styling */
textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 1em;
    color: #333;
    background-color: #fff;
    resize: none;
}

/* Button styling */
button {
    background-color: #1e90ff; 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1c86ee; 
}

/* Spinner styling */
.stSpinner > div {
    border-top-color: #1e90ff;
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Success message styling */
.stAlert {
    font-family: Arial, sans-serif;
    color: #155724; 
    background-color: #d4edda; 
    border-color: #c3e6cb; 
}

/* Image caption styling */
.stImage > div {
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    margin-top: 10px;
}