﻿@import url('blazor.css');

:root {
    /* Nav Dimensions */
    --site-header-height: 55px;
    --nav-bar-height: 25px;
    --total-header-height: 80px;

    /* Colors */
    --red: #EF0044;
    --blue: #13D8BB;
    --blue-rgb: 19, 216, 187;
    --green: #87D634;
    --lightergray: #F6F6F6;
    --lightgray: lightgray;
    --gray: gray;
    --darkgray: darkgray;
}

body {
    margin: 0;
}

* {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.c-pointer {
    cursor: pointer;
}

.ww-anywhere {
    word-wrap: anywhere;
}

.not-found, .not-authorized {
    padding: 10px 0 0 40px;
    font-weight: bold;
    font-size: 30px;
}
