
/* Colour Variable Definitions*/

:root {
    --black: black;
    --darkGray: rgb(22, 22, 22);
    --lightGray: #C6C6C6;
    --white: #ffffff;
}

/* Global Element Definitions */

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    color: var(--white);
    margin-bottom: 60px;
    background-color: var(--darkGray);
}

a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

    a:hover {
        color: var(--lightGray);
    }

.btn {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    font-weight: bold;
    transition: background-color linear 150ms;
}

    .btn:hover {
        background-color: var(--white);
        color: var(--black);
    }

/* Navbar */

.navbar {
    background-color: var(--darkGray);
}

.companyLogo {
    width: 100px;
}

.navbar-brand {
    margin-right: 30px;
}

.nav-link {
    color: var(--white);
}

    .nav-link:hover {
        color: var(--lightGray);
    }

/* Login Adjustments */

.form-label {
    color: black;
}

.checkbox label {
    color: white;
}

/* Register Adjustments */
.form-floating label {
    color: black;
}

/* Center Login/Register Titles */

.pb-3 h1,h2{
    text-align: center;
}

/* Logged In Nav Status*/
.navbar-nav {
    align-items: flex-end;
}

.loggedInStatus {
    font-size: 1.1em;
    padding-right: 12px;
    margin: 0;
}

/* Home/Export Button Menu */
.btnMenuDiv {
    height: 450px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
}

    .btnMenuDiv button {
        width: 200px;
        height: 70px;
        color: var(--white);
        background-color: var(--darkGray);
        border-radius: 5px;
        text-align: center;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color linear 150ms;
    }

        .btnMenuDiv button:hover {
            color: var(--black);
            background-color: var(--white);
        }

/* Projects Table */

.table {
    color: var(--white);
}

/* Form Create */

.row {
    flex-direction: column;
    align-items: center;
}

.form-group {
    display: flex;
    flex-wrap:wrap;
    margin-bottom: 15px;
}

.title {
    text-align: center;
}

.control-label {
    margin-bottom: 5px;
}

.submitBtnContainer {
    justify-content: center;
}

/* Delete Button Form */

.deleteForm {
    margin-bottom: 50px;
}

    .deleteForm input {
        background-color: red;
    }

/* Export Forms */

.exportForm {
    width: 75%;
}

.exportGroups {
    flex-direction: column;
    align-items: center;
}