/* 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 */ }