Spaces:
Running
Running
/* 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 */ | |
/* Custom styling for the generate button */ | |
[data-testid="stButton"] > button { | |
background: linear-gradient(90deg, #FFD700, #FFA500) ; | |
color: #333 ; | |
padding: 8px 15px ; /* Reduced padding */ | |
border-radius: 8px ; | |
border: none ; | |
font-weight: bold ; | |
width: 100% ; | |
text-align: center ; | |
cursor: pointer ; | |
transition: all 0.3s ease ; | |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) ; | |
margin-top: 10px ; /* Reduced top margin */ | |
margin-bottom: 10px ; /* Reduced bottom margin */ | |
} | |
[data-testid="stButton"] > button:hover { | |
background: linear-gradient(90deg, #FFA500, #FFD700) ; | |
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) ; | |
transform: translateY(-2px) ; | |
} | |
[data-testid="stButton"] > button:active { | |
transform: translateY(1px) ; | |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) ; | |
} | |
/* Results container */ | |
.results-container { | |
border: 1px solid #000000; | |
padding: 15px; | |
border-radius: 8px; | |
background-color: #ffffff; | |
} |