/* Loader styles */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #014ca1; /* Your primary color */
    border-radius: 50%;
    width: 30px;   /* smaller width */
    height: 30px;  /* smaller height */
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide content until loader disappears */
#content {
    display: none;
}
