﻿.navbar {
    overflow: hidden;
    background-color: #3c3d3a;
    height: 35px;
    
}

    .navbar a {
        float: left;
        font-size: 16px;
        color: #cedc00;
        text-align: center;
        padding: 7px;
        text-decoration: none;
        font-weight: 700;
        font-size: 20px;
    }

.dropdown-right {
    float: right;
    position: absolute;
    right: 0;
    top: 0;
}

.dropdown-right .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown-right:hover .dropbtn {
   color: white;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}



.center {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.stack-center {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.home-menu-button {
    background: #cedc00;
    font-size: 20px;
    font-weight: 700;
    color: black;
    padding: 10px;
    border: 0px;
    border-radius: 5px;
    margin: 5px;
    width: 250px;
    text-align: center;
    text-decoration: none;
}

.home-menu-button:hover {
    background: #0374f0;
    color: white;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border: 1px solid lightgray;
    z-index: 1;
    right: 5px;
    top: 36px;
    padding: 5px;
}

.profile-button {
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    margin: 2px;
    padding: 0;
    background: #3c3d3a
}

.profile-button:hover {
    cursor: pointer
}

.header-bar {
    width: 100vw;
    margin: 5px;
    border: 1px solid black;
}

.box-500 {
    display: inline-block;
    width: 1000px;
    height: 300px;
    border: 2px solid black;
}

html {
    background: #AAA;
    overflow: hidden;
}

body {
    overflow: hidden;
    margin: 0px;
}

.size-aware-component {
    margin-left: 5px;
    margin-right: 5px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5px;
    border: 1px solid #AAA;
}

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

.m2 {
    margin: 2px;
}
.m3 {
    margin: 3px;
}
.m5 {
    margin: 5px;
}

.m10 {
    margin: 10px;
}



