/* Bellafronte - Dashboard Styles */

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* Smooth transitions */
* { transition-property: background-color, border-color, color, opacity, box-shadow, transform;
    transition-timing-function: ease; transition-duration: 150ms; }
a, button { transition-duration: 100ms; }

/* Input focus ring */
.input-field:focus { box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15); }

/* Password mono */
input[type="password"] { font-family: monospace; letter-spacing: 0.1em; }

/* Tabular numbers for data */
.tabular-nums { font-variant-numeric: tabular-nums; }

/* Smooth page transitions */
main { animation: fadeIn 0.15s ease; }
@keyframes fadeIn { from { opacity: 0.7; } to { opacity: 1; } }
