﻿body {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    height: 100%;
    position: absolute;
    width: 100%;
}

a {
    text-decoration: none !important;
}

.header {
    background: #222;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    padding: 0.25em 1em;
}

    .header a {
        display: flex;
        flex-direction: row;
        color: white;
        align-items: center;
    }

    .header img {
        height: 3.5em;
    }

    .header span {
        font-size: 2em;
        margin-left: 0.5em;
    }

.content {
    background: #021d49;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow-y: auto;
    flex-grow: 1;
}

.subscription-table {
    width: 100%;
    border-collapse: collapse;
}

    .subscription-table th {
        text-align: left;
        border-bottom: 1px solid white;
    }

#token-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    left: -100vw;
    top: -100vh;
}

.button {
    border: 1px solid white;
    border-radius: 0.25em;
    padding: 0.5em;
    text-align: center;
}

    .button:hover {
        background: rgba(255,255,255,0.25);
    }
