
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0px;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

#app {
    position: relative;
    height: 100dvh;
    overflow: hidden;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

.page-title {
    width: 100%;
    min-height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    .page-title h1 {
        width: 40%;
        font-size: 2em;
        margin-left: 30px;
        flex: 1 1 300px;
    }

    .page-title .page-title-filters {
        display: flex;
        width: 60%;
        flex-direction: row;
        align-items: center;
        margin-right: 20px;
        flex: 1 1 300px;
    }

    .page-title .page-title-actions {
        display: flex;
        width: 60%;
        flex-direction: row;
        align-items: center;
        margin-right: 20px;
        flex: 1 1 100px;
    }

.page-content {
    position: relative; 
    height: calc(90% - 110px);
}


td {
    padding: 10px;
    border: 0;
}

tr {
    border: 0;
}



.customButton {
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

    .customButton:hover {
        opacity: 0.9;
    }

    .customButton:active {
        transform: scale(0.98);
    }

.btn-big {
    width: 150px;
    height: 40px;
    margin-right: 5px;
    margin-left: 5px;
}

.btn-medium {
    width: 75px;
    height: 30px;
    margin-right: 5px;
    margin-left: 5px;
}

.btn-small {
    padding: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

.primary {
    background-color: #1b6ec2;
    color: white;
}

.success {
    background-color: #07d804;
    color: white;
}

.warning {
    background-color: #e06e00;
    color: white;
}

.alert {
    background-color: #e30000;
    color: white;
}


.input-container input {
    color: var(--page-main-text);
    width: 100%;
    padding: 10px 10px 10px 0;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid var(--matte-input-border-bottom);
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.input-container label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--page-main-text-title);
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s ease all;
}

.input-container input:focus ~ label,
.input-container input:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 13px;
    color: var(--matte-textbox-focus);
}

.input-container input:focus {
    border-bottom-color: var(--matte-textbox-focus-border);
}
