/* Responsive Header */
/* See https://www.youtube.com/watch?v=At4B7A4GOPg */
* {
    box-sizing:border-box;
}

body {
    margin:0;
    padding:0;
}

.navbar {
    display:flex;
    justify-content: space-between;
    align-items:center;
    background-color: #333;
    color: white;
}

.brand-title {
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: inline-block;
    justify-content: center;
}

.navbar-links li:hover {
    background-color: #555;
}

.toggle-button {
    position: absolute;
    top: .75rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

/* Ipad/Tablet or less */
@media (max-width: 768px) {
    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links li {
        text-align: center;
    }

    .navbar-links li a {
        padding: .75rem 1rem;
    }

    .brand-title {
        padding: .25rem 1rem;
    }

    .navbar-links.active {
        display:flex;
    }
}



/* Main Content */
.mainContent {
    position: fixed;
    top:20%;
    left: 50%;
    width: 40%;
    transform: translate(-50%, -50%);
}

.flex {
    display:flex;
}

.justifyCenter {
    justify-content: Left;
}

table {
    line-height: 45px;
    width: 100%;
    border-collapse: collapse;
}

tr {
    top: 10%
}

td {
    margin: 10px;
    width: 20%;
    font-weight: bold;
}

.byuColor {
    background: #336699 0 0;
}

.hawaiiColor {
    background: #9E1B34 0 0;
}

.ensignColor {
    background: #006341 0 0;
}

.returnColor {
    background: green 0 0 no-repeat padding-box;
}

.roboto22 {
    font: 18px/22px Roboto;
}

.bold {
    font-weight: bold;
}

.hidden {
    display:none;
}

.unlink {
    font: 18px/22px Roboto;
    text-decoration: underline;
    cursor: pointer;
    color: #006D8E
}

.link {
    cursor: pointer;
    border-radius: 4px;
    color: white;
    text-align: center;
    height: 52px;
    font-weight: bold;
}

.addAccount {
    cursor: pointer;
    border-radius: 4px;
    text-align: left;
    font: 18px/30px Roboto;
    letter-spacing: 0;
    color: #FFFFFF;
    width: auto;
    height: auto;
    vertical-align: middle;
    padding: 20px 20px;
    margin: 5px 0;
}
