Spaces:
Sleeping
Sleeping
| .nav-link { | |
| padding: 10px 20px ; | |
| font-family: 'Roboto', sans-serif ; | |
| text-decoration: none ; | |
| color: black ; | |
| border-radius: 5px ; | |
| margin-right: 10px ; | |
| transition: all 0.3s ease ; | |
| display: inline-block ; | |
| } | |
| .nav-link:hover { | |
| background-color: #cacaca ; | |
| transform: translateY(-2px) ; | |
| box-shadow: 0 4px 8px rgba(0,0,0,0.2) ; | |
| text-decoration: none ; | |
| } | |
| .nav-link:active { | |
| background-color: #cacaca ; | |
| transform: translateY(0) ; | |
| text-decoration: none ; | |
| } | |
| /* Active page styling */ | |
| .nav-link.active { | |
| text-decoration: underline ; | |
| font-weight: bold ; | |
| box-shadow: 0 2px 4px rgba(0,0,0,0.2) ; | |
| } | |
| /* Ensure active state overrides hover */ | |
| .nav-link.active:hover { | |
| text-decoration: underline ; | |
| background-color: #d1e7ff ; | |
| } |