/* MozeSMS – base stylesheet (minimal, most styles are inline in views) */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Anchor offset for sticky header */
:target { scroll-margin-top: 80px; }

/* Selection */
::selection { background: #dcfce7; color: #166534; }

/* Focus ring */
:focus-visible {
    outline: 2px solid #1a9e50;
    outline-offset: 2px;
}

/* Scrollbar – webkit */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f5f7f5; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }
