/*
Theme Name: Fourmativ
Theme URI: https://www.elancesoftech.com
Description: This is a custom theme I have created.
Author: Smruti
Author URI: https://www.elancesoftech.com
Version: 0.1
*/
#loader1,#loader2,#loader3,#loader4 
{
display: none; /* Hidden initially */
border: 4px solid #f3f3f3; /* Light grey background */
border-top: 4px solid #3498db; /* Blue spinner */
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 15px auto;
}
/* Spin Animation */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}