.minimal-editor-container{position:relative;width:100%;background:transparent;border:none;border-radius:0;padding:0;box-shadow:none;transition:all .3s ease;min-height:auto}.minimal-editor-inline{position:relative;padding:1.5rem;background:white;margin:0 0 1rem;border-radius:var(--radius-xl);box-shadow:0 1px 3px rgba(0,0,0,.05);min-height:120px;border:1px solid var(--border);transition:all .2s cubic-bezier(.4,0,.2,1)}.minimal-editor-inline:hover{box-shadow:0 2px 6px rgba(0,0,0,.08)}.minimal-editor-inline:focus-within{border-color:var(--accent);box-shadow:0 0 0 2px rgba(59,130,246,.08)}.minimal-editor-journal{padding:clamp(2rem,5vw,4rem) clamp(1rem,5vw,3rem);max-width:65ch;margin:0 auto}.minimal-editor-wrapper{position:relative;min-height:2.5rem;padding:0;animation:fadeIn .3s ease}@keyframes fadeIn{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}.minimal-editor-content{font-family:var(--font-serif);font-size:clamp(18px,1.2rem,20px);line-height:1.8;color:var(--ink);padding:0;min-height:2.5rem;caret-color:var(--accent);position:relative;z-index:1;letter-spacing:-.01em;background:transparent;border:none;outline:none;resize:none;overflow:visible;transition:color .2s ease}.minimal-editor-content h1,.minimal-editor-content h2,.minimal-editor-content h3,.minimal-editor-content h4,.minimal-editor-content h5,.minimal-editor-content h6{color:var(--ink);font-weight:600;line-height:1.3}.minimal-editor-content ol,.minimal-editor-content ul{margin-left:0;padding-left:1.5rem}.minimal-editor-content blockquote{margin:0;padding-left:1rem;opacity:.9}.minimal-editor-content code{font-size:.9em}.minimal-editor-content pre{margin:.5rem 0}.minimal-editor-content a{text-decoration:underline;text-underline-offset:2px}.minimal-editor-placeholder{position:absolute;top:0;left:2px;color:var(--ink-lighter);opacity:.5;font-size:inherit;line-height:inherit;pointer-events:none;user-select:none;font-family:var(--font-serif);z-index:0;transition:opacity .2s ease}.minimal-editor-content:focus~.minimal-editor-placeholder{opacity:.35}[data-empty=false] .minimal-editor-placeholder{display:none}[data-empty=true] .minimal-editor-placeholder{display:block}.minimal-editor-content[contenteditable=true]{min-height:2.5rem;display:block}.minimal-editor-content[contenteditable=true]:empty:after{content:"\200B";display:inline}.minimal-toolbar{display:flex;align-items:center;justify-content:space-between;margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(0,0,0,.06);opacity:1;transition:all .2s ease}.minimal-toolbar-left{display:flex;align-items:center;gap:1rem;font-size:.875rem;color:var(--ink-lighter)}.word-count{font-weight:500;color:var(--ink-light)}.save-indicator{display:flex;align-items:center;gap:.375rem;font-size:.8125rem;color:var(--ink-lighter);font-weight:500}.save-dot{width:6px;height:6px;background:var(--accent);border-radius:50%;animation:saveIndicatorPulse 2s infinite}@keyframes saveIndicatorPulse{0%,to{opacity:1}50%{opacity:.4}}.minimal-toolbar-actions{display:flex;align-items:center;gap:.75rem}.minimal-action{padding:.5rem 1rem;border:1px solid var(--border);border-radius:6px;background:white;color:var(--ink);font-size:.875rem;font-weight:500;cursor:pointer;transition:all .15s ease;line-height:1.2;min-height:36px;display:flex;align-items:center;justify-content:center}.minimal-action:hover{background:var(--surface-hover);border-color:var(--border-strong)}.minimal-action:active{transform:translateY(1px)}.minimal-action:disabled{opacity:.4;cursor:not-allowed;transform:none}.minimal-action:disabled:hover{background:white;border-color:var(--border)}.minimal-action.save{background:var(--accent);color:white;border-color:var(--accent);font-weight:600;min-width:80px}.minimal-action.save:hover:not(:disabled){background:var(--accent-hover);border-color:var(--accent-hover);transform:translateY(-1px);box-shadow:0 2px 8px rgba(59,130,246,.25)}.minimal-action.save:disabled{background:var(--border-light);color:var(--ink-lighter);border-color:var(--border-light)}.minimal-action.delete{color:var(--ink-light);border-color:var(--border-light);background:white}.minimal-action.delete:hover{color:#dc2626;border-color:#dc2626;background:#fef2f2}.minimal-action.delete.confirming{background:#dc2626;color:white;border-color:#dc2626}.minimal-action.cancel{position:absolute;top:1rem;right:1rem;padding:.5rem;border:none;background:transparent;color:var(--ink-lighter);cursor:pointer;border-radius:4px;width:32px;height:32px;display:flex;align-items:center;justify-content:center;transition:all .15s ease}.minimal-action.cancel:hover{background:var(--surface-hover);color:var(--ink);transform:none}.saving-spinner{width:16px;height:16px;border:2px solid rgba(255,255,255,.3);border-top-color:white;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ai-thinking{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem .75rem;background:var(--accent-light);border-radius:2rem;font-size:.75rem;color:var(--accent);font-weight:500;margin-top:.75rem;font-family:var(--font-sans)}.ai-thinking-dots{display:flex;gap:3px}.ai-thinking-dot{width:3px;height:3px;background:var(--accent);border-radius:50%;animation:thinking 1.4s ease-in-out infinite}.ai-thinking-dot:nth-child(2){animation-delay:.2s}.ai-thinking-dot:nth-child(3){animation-delay:.4s}@keyframes thinking{0%,60%,to{opacity:.3;transform:scale(.8)}30%{opacity:1;transform:scale(1)}}@media (max-width:768px){.minimal-editor-journal{padding:1.5rem 1rem}.minimal-editor-content,.minimal-editor-placeholder{font-size:18px;padding-bottom:calc(80px + env(safe-area-inset-bottom))}.minimal-editor-inline{background:var(--paper)!important;border:1px solid var(--border);margin:1rem;padding:1.25rem}.minimal-editor-inline .minimal-editor-content{color:var(--ink)!important;font-size:18px;min-height:100px}.minimal-editor-inline .minimal-editor-placeholder{font-size:18px}.minimal-toolbar{position:fixed;bottom:0;left:0;right:0;margin:0;background:var(--paper);border:none;box-shadow:0 -2px 10px rgba(0,0,0,.03);z-index:10;padding:1rem 1rem calc(1rem + env(safe-area-inset-bottom))}.minimal-editor-inline .minimal-toolbar,.minimal-toolbar{border-top:1px solid rgba(0,0,0,.06);opacity:1;height:auto}.minimal-editor-inline .minimal-toolbar{position:relative;bottom:auto;margin:.5rem 0 0;padding:.5rem 0 0;box-shadow:none;background:transparent;transform:none}.minimal-editor-inline .minimal-editor-content{padding-bottom:0}.minimal-action{font-size:.9375rem;padding:.75rem 1rem;min-height:44px;position:relative}.minimal-action:after{display:none}.minimal-action:not(:disabled){background:var(--surface-hover);border-radius:8px}.minimal-action:active:not(:disabled){background:rgba(0,0,0,.08);transform:scale(.98)}.minimal-action.save{background:var(--accent);color:white;padding:.75rem 1.5rem;font-weight:600}.minimal-action.save:active:not(:disabled){background:var(--accent-hover)}.minimal-action.save:disabled{background:var(--accent);opacity:.5}.minimal-action.delete{background:transparent;color:var(--danger);border:1px solid var(--danger);opacity:.8}.minimal-action.delete.confirming{background:var(--danger);color:white;border-color:transparent}.minimal-toolbar-left{gap:.75rem}.minimal-toolbar-actions{gap:.5rem}.save-indicator,.word-count{font-size:.8125rem}.minimal-action.cancel{top:.5rem;right:.5rem;width:44px;height:44px;padding:0;display:flex;align-items:center;justify-content:center;background:var(--surface-hover);opacity:1}}@media (max-width:380px){.minimal-toolbar{padding-left:.75rem;padding-right:.75rem}.minimal-action{font-size:.875rem;padding:.625rem .875rem;min-height:40px}.minimal-action.save{padding:.625rem 1.25rem;background:var(--accent);color:white}.word-count{display:none}}html.dark .minimal-toolbar{border-top-color:rgba(255,255,255,.06)}html.dark .minimal-action.cancel:hover{background:rgba(255,255,255,.08)}@media (max-width:768px){html.dark .minimal-toolbar{background:var(--paper);box-shadow:0 -2px 10px rgba(0,0,0,.2)}html.dark .minimal-action:not(:disabled):not(.save){background:rgba(255,255,255,.08)}html.dark .minimal-action:active:not(:disabled):not(.save){background:rgba(255,255,255,.12)}html.dark .minimal-action.cancel{background:rgba(255,255,255,.08)}}.minimal-editor-container:focus-within{background:transparent;box-shadow:none;border:none}.minimal-editor-journal .minimal-editor-content{font-size:21px;line-height:1.85}.minimal-editor-inline .minimal-editor-content{padding:.75rem 0;min-height:auto}.minimal-editor-inline .minimal-toolbar{margin-top:.75rem;padding-top:.75rem}@keyframes autoSave{0%{opacity:0}50%{opacity:1}to{opacity:0}}.auto-save-indicator{animation:autoSave 2s ease-in-out}.minimal-editor-container+.context-bar{margin-top:.5rem;transition:all .3s ease}.minimal-editor-content:focus{outline:none}.minimal-editor-content{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}@media (max-width:640px){.minimal-editor-inline{margin:0 -1rem;padding:0 1rem}.minimal-action.cancel{top:-2rem;right:1rem}}@supports (height:100dvh){@media (max-width:768px){.minimal-editor-journal{min-height:auto}.minimal-editor-container:focus-within .minimal-editor-content{padding-bottom:calc(120px + env(safe-area-inset-bottom))}}}
/*# sourceMappingURL=3e8372567d8f5fb5.css.map*/