/* MeetingMinutes.live — Custom styles */

/* Smooth transitions */
* { -webkit-tap-highlight-color: transparent; }

/* Content editable styling */
[contenteditable]:focus {
    outline: none;
}

[contenteditable] h2 { font-size: 1.125rem; font-weight: 700; color: #fff; margin-top: 1rem; margin-bottom: 0.5rem; }
[contenteditable] h3 { font-size: 1rem; font-weight: 600; color: #e2e8f0; margin-top: 0.75rem; margin-bottom: 0.25rem; }
[contenteditable] li { margin-left: 1rem; color: #cbd5e1; }
[contenteditable] strong { color: #fff; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* Recording pulse */
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
