File size: 1,675 Bytes
bc31b5c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* General App Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Main Title */
h1 {
    color: #0056b3;
    font-weight: 600;
    letter-spacing: -1px;
}

/* Column Headers */
.gradio-container .col-header {   
    color: #495057;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 8px;
    margin-bottom: 16px;
    text-align: left;
}

/* Add spacing below controls */
.gradio-container .col-header + div {
    margin-bottom: 20px;
}

/* Consistent Label Styling */
.gradio-container .label {
    font-weight: 500;
    color: #343a40;
}

/* Custom Button Styling */
.gradio-container .gr-button-primary {
    background-color: #007bff !important;
    color: white !important;
    border: none !important;
    transition: background-color 0.3s ease;
}
.gradio-container .gr-button {
    border-radius: 8px !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 1rem !important;
}
.gradio-container .gr-button-primary:hover {
    background-color: #0056b3 !important;
}

.gradio-container .gr-button-secondary {
    background-color: #6c757d !important;
    color: white !important;
    border: none !important;
}



.gradio-container .gr-button-secondary:hover {
    background-color: #5a6268 !important;
}

/* Input Textbox Styling */
.gradio-container .gr-textbox {
    border-radius: 8px !important;
    border: 1px solid #ced4da !important;
}
.gradio-container .gr-textbox:focus {
    border-color: #80bdff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}