﻿body {
}

table {
    margin-left: auto;
    margin-right: auto;
}

.DisabledTextBox {
    background-color: transparent;
}

input {
    border: solid 1px silver;
    padding: 5px;
}

select {
    background-color: transparent;
    border: solid 1px silver;
    padding: 5px;
}

.total {
    background-color: #dcdfe3;
    font-weight: bold;
    height: 35px;
    font-size: 15px;
}

    .total .DisabledTextBox
    {
        
        background-color:#cccccc;
    }

    .total input {
        font-weight: bold;
    }

input:disabled {
    border: none;
    color: black;
}

.matSubjects {
    color: #2E2A2A;
    font-family: sans-serif;
    font-size: 14px;
    border-collapse: collapse;
    border-color: #BCE8F1;
    border-width: 1px;
    border-style: solid;
}

    .matSubjects TH {
        background-color: #dcdfe3;
        padding: 10px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 17px;
        border: 1px none #BCE8F1;
        border-bottom-style: solid;
        font-weight: bold;
    }

    .matSubjects TD {
        padding: 5px;
        border-bottom: solid 1px #BCE8F1;
        font-weight: bold;
    }

.progress {
    position: fixed;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99990;
    background-color: #000000;
    opacity: 0.7;
}

.progress-window {
    z-index: 99991;
    border-width: 0px;
    position: fixed;
    padding: 50px;
    background-color: #FFFFFF;
    font-size: 36px;
    left: 40%;
    top: 40%;
    border-radius: 5px;
    text-align:center;
}

.scan-animation {
    width: 150px;
    height: 150px;
    background-size : contain;
    background-image: url(scan-animation.gif);
}

    .progress span {        
        
    }

.statusText {
    color: Red;
    height: 20px;
}

h1 {
    padding: 3px;
    color: black;
    font-family: sans-serif;
    text-shadow: 1px 1px #3C4870;
}

.btn {
    background-color: #0A66C2;
    color: white;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border-width: thin;
    font-weight: bold;    
    cursor: pointer;
    border: none;
    margin-left:10px;
}

.regular-text {
    font-weight: normal;
}

.hiddenFileInput {
    display:none;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    right: 0;
    padding: 10pt;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#components-reconnect-modal {
    opacity: 0;
    animation: showMe 1s forwards;
    animation-delay: 1s;
}

    #components-reconnect-modal .reconnect-state {
        padding: 0 !important;
    }

@keyframes showMe {
    0% {
    }

    100% {
        opacity: 1;
    }
}


.BlazorStateContainer {
    text-align: center;
    position: relative;
    background: lightyellow;
    line-height: 100px;
    margin: 0;
}

    .BlazorStateContainer button {
        border-radius: 5px;
        background-color: navy;
        color: white;
        border: none;
        padding: 10px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.18);
        cursor: pointer;
    }