/* css/style.css */
body { font-family: 'Montserrat', sans-serif; background-color: #f1f5f9; }
.ql-toolbar { border-radius: 0.5rem 0.5rem 0 0; background: #f8fafc; border-color: #e2e8f0 !important; }
.ql-container { border-radius: 0 0 0.5rem 0.5rem; min-height: 300px; font-family: 'Montserrat', sans-serif; font-size: 1rem; border-color: #e2e8f0 !important; }
.glass-header { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); }

#toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { padding: 16px 24px; border-radius: 8px; color: white; font-weight: 600; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); transform: translateX(120%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; gap: 12px; }
.toast.show { transform: translateX(0); }
.toast.success { background-color: #00C853; }
.toast.error { background-color: #ef4444; }
.toast.info { background-color: #3b82f6; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }
.custom-scrollbar::-webkit-scrollbar { width: 6px; }