@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('navbar.css');
@import url('fonts.css');

:root {
    --background1: #232931;
    --background2: #2C3139;
    --background3: #6A747B;
    --background1-hover: rgba(57,62,70,0.3);
    --text-color: #FFFFFF;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --cyan: #17a2b8;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary-accent: hsl(182, 100%, 35%); /*#ff6d41;*/
    --primary-accent-hover: rgba(0,211,238,0.4);
    --secondary: hsl(212, 69%, 16%); /*#479cc8;*/
    --secondary-hover: hsl(212, 69%, 28%);
    --success-background: hsl(134, 43%, 56%);
    --success-background-hover: hsl(134, 43%, 46%);
    --info-background: hsl(173, 56%, 62%);
    --info-background-hover: hsl(173, 56%, 52%);
    --warning-background: hsl(47, 75%, 61%);
    --warning-background-hover: hsl(47, 75%, 51%);
    --danger-background: hsl(356, 92%, 72%);
    --danger-background-hover: hsl(356, 92%, 62%);
    --light: hsl(200, 22%, 92%);
    --light-hover: hsl(200, 22%, 82%);
    --dark: hsl(210, 10%, 23%);
    --dark-hover: hsl(210, 10%, 33%);
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: Rubik, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html {
    height: 100%;
}

html, body {
    font-family: var(--font-family-sans-serif);
    font-weight: 300;
    background-color: var(--background2);
    color: var(--text-color);
    -webkit-text-size-adjust: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
.main-background {
    background-image: url("../assets/background.svg");
    background-position: right bottom; /*Positioning*/
    background-repeat: no-repeat; /*Prevent showing multiple background images*/
    width: 40%;
    height: 40%;
    right: 32px;
    bottom: 16px;
    position: fixed;
    z-index: -1;
}

@media (max-width:768px) {
    .main-background {
        display: none;
    }
}

header {
    background-color: var(--background1);
    background-position: left center; /*Positioning*/
    background-repeat: no-repeat; /*Prevent showing multiple background images*/
    background-size: 30px 22px;
}

a {
    color: var(--primary-accent);
    text-decoration: none;
    background-color: transparent;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

    a:hover {
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: var(--primary-accent);
    }

.card {
    background-color: var(--background2);
}

#card-link {
    background: #41464E;
    color: var(--text-color);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
    border-bottom: none;
    border-radius: 2px;
    text-decoration: none;
    line-height: initial;
    margin-right: 8px;
    margin-bottom: 8px;
}

    #card-link:hover,
    #card-link:focus {
        /*color: var(--primary-accent);*/
        background: #505762;
        border-bottom: none;
    }

h4 {
    font-size: 28px;
    font-weight: bold
}

p {
    margin-top: 4px;
    margin-bottom: 4px;
}

.card {
    border-radius: 0;
}

button.btn.btn-link {
    font-weight: 600;
    color: black;
}



.container {
    max-width: 100% !important;
}


a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.b-header-logo {
    background-image: url("../assets/logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 2.4em;
    height: 2.4em;
    margin-left: 4px;
    margin-right: 8px;
}

.table {
    width: 100%;
    margin-bottom: 0;
    color: #212529;
}

    .table th, .table td {
        padding: 0.75rem;
        vertical-align: top;
        border-top: 0 solid #dee2e6;
    }

.navbar-toggler {
    left: 85%;
    position: sticky;
}
/* Sticky footer styles
-------------------------------------------------- */


@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}


#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;
    }
