23 lines
		
	
	
		
			419 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			419 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* Additional custom styles if needed */
 | 
						|
[x-cloak] { display: none !important; }
 | 
						|
 | 
						|
/* Ensure body takes full height */
 | 
						|
body {
 | 
						|
    margin: 0;
 | 
						|
    padding: 0;
 | 
						|
}
 | 
						|
 | 
						|
/* Loading spinner animation */
 | 
						|
.animate-spin {
 | 
						|
    animation: spin 1s linear infinite;
 | 
						|
}
 | 
						|
 | 
						|
@keyframes spin {
 | 
						|
    0% { transform: rotate(0deg); }
 | 
						|
    100% { transform: rotate(360deg); }
 | 
						|
}
 | 
						|
 | 
						|
/* Object fit for images */
 | 
						|
.object-contain {
 | 
						|
    object-fit: contain;
 | 
						|
} |