﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');


:root {
    /* Families */
    --font-primary: "Silka", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: "StyreneA", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    /* Expose to Bootstrap */
    --bs-body-font-family: var(--font-primary);
    /* Weights you ship */
    --fw-extralight: 200;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-bold: 700;
    /* colors */
    --newton-blue-1: #0d0d21;
    --newton-blue-2: #14142b;
    --newton-blue-3: #1d1d34;
    --newton-blue-4: #2e2e4d;
    --newton-teal-1: #0a2c40;
    --newton-teal-2: #0e4863;
    --box-shadow-1: 6px 6px 23px rgba(0, 0, 0, 0.31), -4px -4px 14px rgba(89, 89, 139, 0.5);
}

html, body {
    font-family: var(--bs-body-font-family);
    font-weight: var(--fw-regular);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-synthesis: weight; /* you don’t ship italics; avoid faux italics */
}

/* Headings use StyreneA (bold by default) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    letter-spacing: .01em;
    margin: 0 0 .5rem;
}

select.form-select {
    height: 42px;
}

select.form-control {
    height: 40px;
}

/* Optional utilities */
.font-extralight {
    font-weight: var(--fw-extralight);
}

.font-light {
    font-weight: var(--fw-light);
}

.font-regular {
    font-weight: var(--fw-regular);
}

.font-bold {
    font-weight: var(--fw-bold);
}

/* Ensure Telerik/Kendo uses your body font */
[class^="k-"], [class*=" k-"] {
    font-family: var(--bs-body-font-family);
    font-weight: var(--fw-regular);
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: #DB1623;
}

#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: 0.75rem;
        top: 0.5rem;
    }

.page {
    position: relative;
    display: flex;
    flex-direction: row;
}

.main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.page {
    flex-direction: row;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
}

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

