File size: 907 Bytes
851e96c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* style.css */

body {
    background-color: #f8f9fa;  /* Light gray background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gradio-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #343a40;
    text-align: center;
}

.gr-button {
    background-color: #007bff !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    font-size: 16px !important;
}

.gr-button:hover {
    background-color: #0056b3 !important;
}

.gr-input, .gr-textbox {
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    padding: 10px !important;
}

.gr-textbox textarea {
    min-height: 100px !important;
}