@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); body { font-family: 'Inter', sans-serif; min-height: 100vh; background-color: #111827; } /* Custom scrollbar */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #1f2937; } ::-webkit-scrollbar-thumb { background: #6b7280; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #4b5563; } /* Animation for the upload area */ @keyframes pulse { 0% { border-color: #6b7280; } 50% { border-color: #ec4899; } 100% { border-color: #6b7280; } } .border-dashed:hover { animation: pulse 2s infinite; } /* Video preview placeholder */ .aspect-w-16 { position: relative; padding-bottom: 56.25%; /* 16:9 aspect ratio */ height: 0; overflow: hidden; } .aspect-w-16 > div { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; } /* Prompt textarea styling */ #ai-prompt:focus { border-color: #ec4899; outline: none; box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2); }