body {
    font-family: 'Roboto';
    font-size: 18px;
    /*    background-image: url(/Images/colours2.jpg);
    background-position: top center;
    background-size: cover;*/

    background-color: #fbfbfd;
    margin: 0;
    background-image: url(/images/glow.png);
    background-position: center 30px;
    background-repeat: no-repeat;
}



.ns-bounce {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 6px solid rgba(0,0,0,0.08);
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Page Loader Overlay */
#page-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    #page-loader .spinner {
        width: 50px;
        height: 50px;
        border-width: 4px;
        border-top-color: #ff69b4;
    }





/* Buttons */
.button, .browse-btn, .delete-btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff, #f3f6ff);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: var(--shadow-sm);
    transition: transform .12s ease, box-shadow .12s ease;
}


.browse-btn {
    color: #fff;
    background: #ff69b4;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 0.9rem;
}



#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 3.5rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsYXA9InVybCgjY2xpcDApIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjM1IC01MSkiPjxyYWNseSBjbGFzcz0iaGVhZGVyIiBocmlkZGU9IjIiIHJvbGU9ImRpc3BsYXkiIHN0eWxlPSJ0ZWFtb3V0LXBhZ2UtYW55PjxpbWcgc3JjPSJodHRwczovL2dpdy53My5jb20vZW1vZGdlL2NoYXRzLzk5Ny9pbWcvMS5wbmciIGFsdD0iMjAyMDYwOTE2Mzc1MDQ1OCIgY2FwdGlvbl9ub25jZT0idHJ1ZSIvPjxpbWcgd2lkdGg9IjAiIGhlaWdodD0iMCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }




@media (max-width: 1200px) {
    .cookie-consent-container {
        width: 100vw;
        left:0;
        bottom: 0;
        transform: translate(0) !important;
        border-radius: 0;
        box-sizing: border-box;
    }
}
