﻿/* Buttons */
.vsi-btn
{
    margin-right: 3px;
    margin-bottom: 3px;
    color: #fff !important;
    padding: 0.30rem 0.5rem !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
}

/* Grey overlay when in Progress*/
.vsi-overlay
{
    position: fixed; /* Fixed position to cover the whole viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(128, 128, 128, 0.2); /* Semi-transparent grey */
    display: flex; /* Use flexbox to center the child content */
    align-items: center; /* Center the content vertically */
    justify-content: center; /* Center the content horizontally */
    z-index: 9998; /* High z-index to ensure overlay is on top of other content */
}

.vsi-hidden
{
    display: none!important;
}

/* In je site.css of app.css */
html, body
{
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
    min-height: 100vh;
}

#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;
}

#app, .container-fluid, main
{
    min-height: 100vh;
} 


