/* Styles for the page loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 37, 84, 0.95); /* Primary color with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Hide the main content initially */
#content {
    display: none;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 8px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    border-top: 8px solid #3b82f6;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
