dewmetime/caption-wizard-trigger-words
0
1 2/* Shared styles across all pages */3.hovered-element:hover {4 transform: translateY(-2px);5 box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);6 transition: all 0.3s ease;7}8 9@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');10 11body {12 font-family: 'Inter', sans-serif;13}14 15/* Custom scrollbar */16::-webkit-scrollbar {17 width: 8px;18}19 20::-webkit-scrollbar-track {21 background: #f1f1f1;22}23 24::-webkit-scrollbar-thumb {25 background: #8b5cf6;26 border-radius: 4px;27}28 29::-webkit-scrollbar-thumb:hover {30 background: #7c3aed;31}