File size: 700 Bytes
782cb1c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Modern Enterprise Theme */
.gradio-container {
    font-family: 'Inter', sans-serif;
    max-width: 1200px !important;
    margin: auto;
}

.tabs {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.input-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
}

.button {
    background: #2d63c8;
    color: white;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.button:hover {
    background: #1e4a9d;
    transform: translateY(-1px);
}

.output-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-top: 12px;
}