﻿*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
}

:root {
    --bg-blue: #334f85;
    --bg-lightblue: #112d63;
}


body {
    background-color: var(--bg-blue);
    background-image: url("/favicon/web-app-manifest-512x512.png");
    background-size: 100%;
    background-repeat: no-repeat;
    font-size: 3.5em
}

.Content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: #222;
}

h1 {
    margin-bottom: 0.25em;
    font-size: 10cqw;
}

h2 {
    margin-bottom: 0.25em;
    font-size: 7cqw;
}

h3 {
    margin-bottom: 0.25em;
    font-size: 6cqw;
}

p {
    margin-bottom: 0.2em;
    font-size: 4cqw;
}

p.small {
        font-size: 2cqw;
}

.card {
    box-shadow: 0 16px 32px 0 rgba(0,0,0,1);
    border-radius: 25px;
    background-color: #ffffff;
    opacity: 0.9;
    transition: 0.3s;
    margin: 25px 5px 5px 5px;
    padding: 10px 25px 10px 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
}

#SubscriptionPanel {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: left;
    text-align: left;
}

.red {
    background-color: #ffdddd;
}

/* styles for sliders */



.toggle {
    cursor: pointer;
    display: inline-block;
}

.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 58px;
    height: 32px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

    .toggle-switch:before, .toggle-switch:after {
        content: "";
    }

    .toggle-switch:before {
        display: block;
        background: linear-gradient(to bottom, #fff 0%, #eee 100%);
        border-radius: 50%;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
        width: 24px;
        height: 24px;
        position: absolute;
        top: 4px;
        left: 4px;
        transition: left 0.25s;
    }

.toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox:checked + .toggle-switch {
    background: #56c080;
}

    .toggle-checkbox:checked + .toggle-switch:before {
        left: 30px;
    }

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
    font-size: 6cqw;
    vertical-align: middle;
}

#DiagCard {
    justify-content: left;
    text-align: left;
    font-size: 3cqw;
}

#DiagCard p{
    font-size: 3cqw;
}

#LogCard {
    justify-content: left;
    text-align: left;    
}


.logTable {
    padding: 0px;
    border-collapse: collapse;
    border: 1px solid #888;
    font-size: 2.5cqw;
}

.logTable thead {
    font-weight: bold;
}

.logTable td {
    padding: 0.5cqw 2cqw 0.5cqw 2cqw;
    border: 1px solid #888;
}

.button {
    box-shadow: 3px 3px 3px 3px;
    border-radius: 25px;
    background-color: #00ff00;
    opacity: 0.9;
    transition: 0.3s;
    margin: 25px 5px 10px 5px;
    padding: 10px 25px 10px 25px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
    font-size: 8cqw;
    font-style: normal;
    text-decoration: none;
    color: black;
}

.button:active {
    background-color: #00dd00;
    box-shadow: 0 0 0 0;
}


.subtlelink {
    font-size: 8cqw;
    font-style: normal;
    text-decoration: none;
    color: #112d63;
}

