﻿
:root {
    --primary-color: #428bca;
    --secondary-color: #3071a9;
    --tertiary-color: #3071a9;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.column {
    float: left;
    width: 100%;
    padding: 0 10px;
}

.row {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
}

/* Clear floats after the columns */
    .row:after {
        content: "";
        display: table;
        clear: both;
    }

/* Style the counter cards */
.cardHeader {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    text-align: center;
    background-color: #0089ce;
    border-radius: 5px;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    text-align: center;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.cardLeft {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    text-align: left;
    background-color: #f1f1f1;
    border-radius: 5px;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
    .row {
        flex-direction: column;
    }
}

.btn-hover,
.btn:hover {
    opacity: 0.9;
}

.btn:disabled {
    background-color: transparent;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn:active {
    opacity: 1;
}

.btn:focus {
    outline: 0;
}

.btn {
    border-radius: 2px;
    border: 1px solid;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 8px 24px;
}

.btn-primary {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

    .btn-primary:disabled {
        color: var(--primary-color);
    }

    .btn-primary:focus {
        box-shadow: 0 0 5px var(--primary-color);
    }

.btn-secondary {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

    .btn-secondary:disabled {
        color: var(--secondary-color);
    }

    .btn-secondary:focus {
        box-shadow: 0 0 5px var(--secondary-color);
    }

.btn-tertiary {
    border-color: var(--tertiary-color);
    background-color: var(--tertiary-color);
}

    .btn-tertiary:disabled {
        color: var(--tertiary-color);
    }

    .btn-tertiary:focus {
        box-shadow: 0 0 5px var(--tertiary-color);
    }

.btn-large {
    font-size: 16px;
    padding: 12px 36px;
    border-radius: 5px;
}

.btn-small {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 5px;
}

h1, h2, h3, h4 {
    color: #f5f5f5;
    font-family: arial, sans-serif;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 1px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 60px;
}

.navigation-bar {
    width: 100%; /* i'm assuming full width */
    height: 60px; /* change it to desired width */
    background-color: #0089ce; /* change to desired color */
    margin: 0;
    padding: 0;
    border-radius: 5px;
}

.logo {
    display: inline-block;
    vertical-align: top;
    height: 60px;
    margin-right: 0px;
    margin-top: 0px; /* if you want it vertically middle of the navbar. */
    border-radius: 5px;
}

.navigation-bar > a {
    display: inline-block;
    vertical-align: top;
    height: 60px; /* if you want it to take the full height of the bar */
    line-height: 60px; /* if you want it vertically middle of the navbar */
    border-radius: 5px;
}

.label{
    width: 75%;
}

.textBox{
    width: 75%;
}
