/*
 * Custom styles for the RadioEdit auth app
 */

html, body {
    height: 100%;
    font-size: 16px;
}

#auth-app {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

table {
    width: 100%;
}

.section-container.auto .section .content {
    border-width: 1px 0 0 0;
}

.top-bar-section li a:hover {
    color: #eee;
}

#welcome {
    margin-top: 2rem;
}

#login, #authorize {
    margin-top: 2rem;
}

#login .column, #authorize .column {
    max-width: 450px;
}

#messages {
    padding: 1rem 0 0;
}

#approvals {
    padding: 2rem 0;
}

#approvals > .header {
    margin-bottom: 2rem;
}

nav .ui.menu .toc.item {
    display: none;
}

nav .ui.menu .info-item {
    color: #aaa;
    margin-right: 10px;
}

@media only screen and (max-width: 640px) {
    #auth-app nav .ui.menu .item, nav .ui.menu .info-item {
        display: none;
    }

    #auth-app nav .ui.menu .item.right {
        display: flex;
    }

    #auth-app nav .ui.menu .toc.item {
        display: block;
    }
}