html,
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a,
.btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PC9nPjwvc3ZnPg==) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred.";
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

/* ===========================
   TABELA DE ENTRADA DE DADOS
   =========================== */

.tab-padrao {
    width: auto;
}

    /* COLUNA 1 - Nome do parâmetro */
    .tab-padrao td:nth-child(1) {
        width: 80px;
        text-align: left;
        vertical-align: middle;
    }

    /* COLUNA 2 - Campo de entrada */
    .tab-padrao td:nth-child(2) {
        width: 80px;
        text-align: right;
        vertical-align: middle;
    }

    .tab-padrao td:nth-child(2) input {
        width: 100%;
        box-sizing: border-box;
    }

    /* COLUNA 3 - Unidade */
    .tab-padrao td:nth-child(3) {
        width: 60px;
        text-align: center;
        vertical-align: middle;
    }

    /* Alinhamento dos inputs */
    .tab-padrao input {
        text-align: right;
    }


.card-header {
    background-color: #f2f2f2;
}

/* ===========================
   REMOVER SETAS DOS INPUTS
   =========================== */

/* Chrome, Edge e Safari */
.tab-padrao input[type="number"]::-webkit-outer-spin-button,
.tab-padrao input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.tab-padrao input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}


/* Cabeçalho da tabela */
.table-resultado th {
    text-align: center !important;
    vertical-align: middle !important;
}

/* Primeira coluna (Bitola) */
.table-resultado td:first-child {
    text-align: center !important;
}

/* Demais colunas */
.table-resultado td:not(:first-child) {
    text-align: right !important;
}

.table-resultado th {
    text-align: center;
    vertical-align: middle;
    background-color: #f8f9fa;
    font-weight: bold;
}

.table-resultado td {
    text-align: center;
    vertical-align: middle;
}

.tab-padrao {
    border-collapse: collapse;
}

    .tab-padrao td,
    .tab-padrao th {
        border: 1px solid #dee2e6;
    }

