File size: 1,808 Bytes
1516356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* stylish_button.css */

/* Body styling for dark theme */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #ffffff;
    color: #ffffff;
}

/* Title styling */
h1 {
    color: #1DB954;
    text-align: center;
}

/* File uploader styling */
div.stFileUploader {
    margin-top: 20px;
    color: #ffffff;
    text-align: center;
}

/* Text input styling */
div.stTextInput {
    margin-top: 20px;
}


/* Button styling */
div.stButton>button {
    background-color: #4CAF50 !important; /* Darker green */
    color: #ffffff !important;
    border-radius: 5px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

/* Download button text styling */
div.stButton>button>span {
    font-weight: bold !important;
}

/* Download button hover effect */
div.stButton>button:hover {
    background-color: #45a049 !important; /* Darker green on hover */
}


/* Error message styling */
p.errorMessage {
    color: #ff0000;
    text-align: center;
}

/* Audio player styling */
div.stAudio {
    margin-top: 20px;
}

/* Download button styling */
div.stDownloadButton>button {
    background-color: #4CAF50 !important; /* Darker green */
    color: #ffffff !important;
    border-radius: 5px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

/* Download button text styling */
div.stDownloadButton>button>span {
    font-weight: bold !important;
}

/* Download button hover effect */
div.stDownloadButton>button:hover {
    background-color: #45a049 !important; /* Darker green on hover */
}