/* Style for the Preloader Overlay */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f2f2f2; /* Light background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Keep it on top */
}

/* Style for the Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc; /* Light border color */
    border-top: 5px solid #007bff; /* Blue border for the spinner */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframes for the spinning animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
