﻿.center_horizontal
{
    display: flex;
    justify-content: center;
    flex-direction: row;
    height: 100%;
}
.center_vertical
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.container
{
    margin: 40px;
    display: flex;
    flex-direction: column;
}
.navbar
{
    display: flex;
    height: 50px;
    text-align: right;
    border-bottom-color: #444;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.home, .home > a > svg
{
    height: 50px;
    width: 128px;
    background: rgba(0, 0, 0, 0);
}
.home:active > a > svg
{
    height: 44px;
    margin-top: 3px;
}
.home #homesvg
{
    transition: all 0.2s;
}
.home:hover #homesvg
{
    stroke: #0094ff !important;
    filter: url(#glow);
}

.actions
{
    flex-grow: 1;
    height: 50px;
}
.actions div
{
    display: inline-block;
    width: 50px;
    text-align: center;
}
.actions div, .actions svg
{
    height: 50px;
}
.actions div:hover a #action
{
    stroke: #0094ff !important;
    fill: #0094ff;
    filter: url(#glow);
}

.error_message
{
    color: red;
    font-size: 20px;
}