/* Critical CSS to prevent FOUC */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #3B82F6, #6366F1, #9333EA);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

.loader-hidden {
    opacity: 0;
    pointer-events: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.main-content {
    flex: 1 0 auto;
    overflow-y: auto;
}

.footer {
    flex-shrink: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 1rem 0;
}

.footer-text {
    color: #333;
    font-size: 0.875rem;
    font-weight: 500;
}