        @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
        
        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box ;
        }

        html, body {
            font-size: 12px;
            font-family: "Nunito", sans-serif;
            background: rgb(223, 223, 240);
        }

        header nav .navbar {
            background: white;
            z-index: 1;
            position: fixed;
        }

        nav {
            height: 70px;
           background-color: whitesmoke;
           color: #26328C;
           font-weight: 800;
        }

        main {
            height: 100vh;
        }



        footer {
            height: 80px;
            width: 100%;
            background-color: white;
            color: #26328C;
            align-items: center;
            font-weight: 700;

        }

/* Document page spinner overlay */
.document-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.388);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.document-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.document-spinner img {
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.document-spinner .loading-text {
    color: #26328C;
    font-weight: 700;
    font-size: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

        @media (min-width: 768px) { 

            main {
                height: 80vh;
            }
            main .download-section {
                margin-top: 100px !important;
            }
         }
