::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #4a5f82; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #6b82a8; }

/* Toast */
.toast { position: fixed; top: 16px; right: 16px; z-index: 10000; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Table */
#recordTable th { white-space: nowrap; }
