Spaces:
Sleeping
Sleeping
| /* Main container styling */ | |
| .block-container { | |
| padding-top: 1rem; | |
| padding-bottom: 5rem; | |
| } | |
| /* Title spacing */ | |
| h1 { | |
| margin-top: -2rem; | |
| padding-top: 0.5rem; | |
| } | |
| /* Subtitle spacing */ | |
| h4 { | |
| margin-top: 0.5rem; | |
| padding-top: 0rem; | |
| } | |
| /* Custom button styling */ | |
| div.stButton > button { | |
| background-color: #FFCC00; | |
| color: black; | |
| width: 90%; | |
| height: 60px; | |
| font-weight: bold; | |
| font-size: 22px; | |
| text-transform: uppercase; | |
| border: 1px solid #000000; | |
| border-radius: 8px; | |
| display: block; | |
| margin: 0 auto; | |
| } | |
| div.stButton > button:hover { | |
| background-color: #FFD700; | |
| color: black; | |
| } | |
| /* Results container */ | |
| .results-container { | |
| border: 1px solid #000000; | |
| padding: 15px; | |
| border-radius: 8px; | |
| background-color: #ffffff; | |
| } | |
| /* Email content styling */ | |
| .results-container p { | |
| font-size: 1rem; | |
| line-height: 1.5; | |
| white-space: pre-wrap; | |
| } | |
| /* Email heading */ | |
| .results-container h4 { | |
| font-size: 1.2rem; | |
| margin-bottom: 15px; | |
| color: #333; | |
| } | |
| /* Ensure P.D. and all text has consistent size */ | |
| .results-container p strong, | |
| .results-container p b, | |
| .results-container p em, | |
| .results-container p i { | |
| font-size: 1rem; | |
| } | |
| /* Download button styling */ | |
| .stDownloadButton button { | |
| background: linear-gradient(to right, #FFD700, #FFA500); | |
| color: black; | |
| font-weight: bold; | |
| border: none; | |
| width: 80%; | |
| margin: 20px auto; /* Add top and bottom margin */ | |
| display: block; | |
| } | |
| /* Results container styling */ | |
| .results-container { | |
| margin-bottom: 20px; | |
| padding: 15px; | |
| border-radius: 5px; | |
| background-color: #f8f9fa; | |
| } | |