Spaces:
Sleeping
Sleeping
| /* Core Styling */ | |
| body { | |
| margin: 0; | |
| background-color: #08090c; | |
| color: #e2e8f0; | |
| font-family: 'Inter', sans-serif; | |
| } | |
| /* 3D Header/Footer with Deep Gradients */ | |
| .custom-header { | |
| background: linear-gradient(90deg, #08090c 0%, #0d1a17 50%, #08090c 100%) ; | |
| border-bottom: 2px solid rgba(0, 210, 255, 0.3) ; | |
| box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9) ; | |
| backdrop-filter: blur(20px); | |
| } | |
| .custom-footer { | |
| background: linear-gradient(90deg, #08090c 0%, #10211d 50%, #08090c 100%) ; | |
| border-top: 2px solid rgba(0, 210, 255, 0.3) ; | |
| box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9) ; | |
| padding: 2rem 0 ; | |
| } | |
| /* Navigation Links Styling */ | |
| .nav-link-custom { | |
| color: #94a3b8 ; | |
| font-size: 1.1rem; | |
| padding: 12px 20px ; | |
| margin: 0 5px; | |
| border-radius: 12px; | |
| transition: all 0.3s ease; | |
| } | |
| .nav-link-custom.active { | |
| background: rgba(0, 210, 255, 0.1) ; | |
| border: 1px solid rgba(0, 210, 255, 0.3) ; | |
| color: #00d2ff ; | |
| box-shadow: 0 0 15px rgba(0, 210, 255, 0.2); | |
| } | |
| /* Full-Width Content Container */ | |
| .content-container-fluid { | |
| width: 100% ; | |
| max-width: 100% ; | |
| padding: 3rem 4% ; /* Side breathing room */ | |
| margin: 0 ; | |
| } | |
| /* Dashboard Cards (3D Glassmorphism) */ | |
| .saas-card { | |
| background: rgba(255, 255, 255, 0.02) ; | |
| backdrop-filter: blur(15px); | |
| border-radius: 20px ; | |
| border: 1px solid rgba(255, 255, 255, 0.05) ; | |
| box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) ; | |
| padding: 25px; | |
| transition: transform 0.3s ease; | |
| } | |
| .saas-card:hover { | |
| transform: translateY(-5px); | |
| border-color: rgba(0, 210, 255, 0.3) ; | |
| } |