/**
white - #FFFFFF
black - #000000
dark blue - #2B5283
lighter blue - #2973A2
gray - #AFAFAF
dark gray - #858585
light gray - #F5F5F5
dark red - #9E2935
coral - #F58177
green - #639130

 */

body {
    font-family: "Roboto Thin", "Helvitica", "arial", sans-serif;
    background-color: #2B5283;
    margin: 0px;
    font-size: 16px;
}

h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #2B5283;
    border-bottom: 1px solid #AFAFAF;
}

footer {
    padding: .5rem;
    text-align: center;
    color: #000000;
}

a, .login-link {
    color: #2973A2;
    text-decoration: none;
    cursor: pointer;
}

a:hover, .login-link:hover {
    text-decoration: underline;
}

#content {
    margin: 1rem 10%;
    padding: 10px;
    background: #F5F5F5;
}

.flex-parent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flex-column {
    padding: 1rem;
    align-items: center;
    display: flex;
    flex-direction: column;
}

button {
    margin: .5rem;
    padding: .5rem;
    cursor: pointer;
    border: .1rem solid #cccccc;
    box-shadow: .1rem .1rem #cccccc;
    font-size: 16px;
    background-color: #2B5283;
    color: white;
    font-weight: bold;
}



/** Styles for admin area **/

#editForm {
    width: 500px;
    margin: auto;
    border: 1px dotted #AFAFAF;
    padding: 20px;
}

#editForm label {
    padding: 5px 0px;
    font-weight: bold;
}

#editForm div div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.link-card {
    background-color: white;
    border: 1px solid black;
    border-radius: 4px;
    cursor: pointer;
    width: 200px;
    min-height: 200px;
    padding: 20px;
    margin: 20px;
    align-content: center;
    justify-content: center;
}

.link-card img {
    max-width: 160px;
}

table.table {
    border: 1px solid black;
    border-collapse: collapse;
    margin: 20px;
}

table.table th {
    padding: 5px;
    border-bottom: 2px solid #707070;
}

table.table td {
    padding: 5px;
    border: 1px solid #707070;
}

.smallIcon {
    height: 20px;
    padding: 2px;
}
