/* Auto Usate Subito - Frontend CSS (tema autousate/Paper) */

/* Scrollbar sottile */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #FAFAF9; }
::-webkit-scrollbar-thumb { background: #D6D3D1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #A8A29E; }

/* Animated skeleton loader */
.skeleton {
	background: linear-gradient(90deg, #E7E5E4 25%, #D6D3D1 50%, #E7E5E4 75%);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Select compatte su mobile */
@media (max-width: 639px) {
	select { font-size: 13px; }
}