﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans',Helvetica,sans-serif;
    color: #676767;
}

header {
    margin: 0;
    width: 100%;
    display: block;
    background-color: white;
    align-items: flex-start;
    position: fixed;
}

footer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    font-size: 7pt;
}

a {
    color: #ae0e2e;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
        color: #2e2b2b;
    }

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #2e2b2b;
}

    table thead {
        font-weight: bold;
        font-size: 11pt;
    }

    table th {
        border: 1px solid #2e2b2b;
        padding: 5px;
    }

    table td {
        font-size: 10pt;
        border: 1px solid #2e2b2b;
        padding: 2px 10px;
    }

.main-content {
    height: calc(100vh - 100px);
    position: fixed;
    margin-top: 120px;
    width: 100%;
    overflow-y: scroll;
}

.btn-primary {
    background-color: #ae0e2e;
    color: white;
    border: none;
    padding: 10px;
    margin: 0;
    border-radius: 8px;
    font-weight: bold;
}

.bg-stripe {
    margin: 0;
    padding: 0;
    height: 25px;
    width: 100%;
    display: block;
    position: relative;
    background: linear-gradient(to bottom, rgba(103, 103, 103, 0.2), /* #ae0e2e at 40% opacity */
    transparent);
}

.logo {
    height: 60px;
}

.login {
    display: flex;
    position: relative;
    justify-content: end;
    width: 200px;
}

    .login p {
        padding: 0;
        margin: 0;
    }

.container {
    padding: 10px 50px;
    color: black;
}

.navbar {
    padding: 10px 20px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .navbar ul {
        width: 1000px;
        display: flex;
        flex-direction: row;
        list-style-type: none;
        margin: 0;
    }

    .navbar a {
    }

.nav-item {
    padding: 10px;
}

.nav-link {
    text-decoration: none;
    font-weight: bold;
    color: #2e2b2b;
    padding: 0 10px;
}

    .nav-link:hover {
        color: #ae0e2e;
        text-decoration: none;
    }

.row {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-content: start;
}

.column {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;      
}

.form-group {
    display: flex;
    padding: 5px 0;
}

.form-control {
    display: flex;
    width: 40%;
}

.form-control-date {
    display: flex;
    width: 110px;
    margin-right: 20px;
}

.form-control-checkbox {
    vertical-align: top;
    margin-right: 15px;
    margin-top: 5px;
}

.control-label {
    flex-direction: row;
    width: 125px;
    font-weight: 500;
}

.control-label-long {
    flex-direction: row;
    width: 250px;
    font-weight: 500;
}

.text-green {
    color: darkgreen;
}

.text-danger {
    font-weight: bold;
    color: darkred;
}

.teacher-links {
    margin-right: 20px;
}