:root {
    --primary-bg-color: #131517;
    --accent-bg-color: #545353;
    --primary-color: #FFFFFF;
    --secondary-accent-color: #D6A91A;
}

body {
    background-color: var(--primary-bg-color);
    margin: 0px;
    padding: 0px;
    color: var(--primary-color);
    font-family: arial;
    display: flex;
    align-items: center;
    flex-direction: column;
    min-height: 100%;
}

section {
    width: 100rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

nav {
    font-family: "Arial";
    display: flex;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--primary-bg-color);
}

nav box-icon {
    height: auto;
    width: 5em;
    padding-left: 1%;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 50%;
    height: auto;
    place-items: center;
}

[name="run"] {
    height: auto;
    width: 10em;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-webkit-list-button {
    display: none !important;
}

.form-datalist {
    display: none !important;
}

#bubbleChartDiv {
    width: 90%;
    height: 50%;
    margin-bottom: 100px;
    margin-top: 4%;
    background-color: var(--accent-bg-color);
    border-radius: 40px;
    color: red;
}

.center_div {
    justify-content: center;
    text-align: center;
    margin: auto;
    width: 100%;
}

.nav__h1 {
    display: inline-block;
    font-size: 2em;
    padding-left: 1%;
    align-items: center;
}

.nav__ul {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
    text-align: right;
    padding-right: 1em;
}

.nav__ul--li {
    display: inline-block;
    list-style-type: none;
    height: 3em;
    width: auto;
    font-size: 0.6em;
    border:1px solid #FFFAEC;
    border-radius: 10px;
    padding: 8px 15px 1px 15px;
    background-color: var(--accent-bg-color);
}

.nav__ul--li--logged-in {
    display: inline-block;
    list-style-type: none;
    height: 2em;
    width: auto;
    font-size: 0.6em;
    color: var(--primary-color);
    border-radius: 20px;
    padding: 8px 15px 8px 15px;
    background-color: none;
}

.nav__ul--li--a {
    text-decoration: none;
    vertical-align: middle;
    height: 100%;
    width: auto;
    font-size: 2em;
    color: #FFFAEC;
}

.nav__ul--li--a--logged-in {
    text-decoration: none;
    vertical-align: middle;
    height: 100%;
    width: auto;
    font-size: 2em;
    color: var(--primary-color);
}

.landing-page-main {
    text-align: center;
}

.landing-page-main>p {
    padding: 0em 20em 0em 20em;
}

.sketchfab-embed-wrapper {
    width: 100%;
    height: auto;
}

.login-wrapper {
    margin-top: 10%;
    width: 60%;
    // background: #478EFF;
    background: var(--accent-bg-color);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}

.login-wrapper h1 {
    font-size: 36px;
    text-align: center;
}

.login-wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 95%;
    height: 100%;
    background: transparent;
    font-size: 1.5em;
    padding-left: 1em;
    border: none;
    outline: none;
    border: 2px solid rgba(255 ,255, 255, .2);
    border-radius: 40px;
}

.input-box input::placeholder {
    color: #fff;
}

.input-box box-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.login-wrapper .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outnline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0 , 0, .1);
    cursor: pointer;
    font-size: 1em;
    color: #333;
    font-weight: 600;
}

.workouts--options {
    width: 100%;
}

.login-wrapper .register-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content__div--buttons {
    margin-top: 1em;
    background: var(--accent-bg-color);
    text-align: center;
    border-radius: 10px;
    height: 5vh;
    font-size: 1.5em;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px 0 rgba(10,10,10,1);
}

.content__div--a {
    font-size: 1em;
    text-decoration: none;
    font-family: "Roboto Slab", serif;
    color: #fff;
    width: 100%;
}

.content__div h1 {
    font-size: 3em;
    font-family: "Roboto Slab", serif;
}

.workouts__div {
    display: flex;
    flex-direction: column;
    font-size: 3em;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0 , 0, .1);
    background-color: var(--accent-bg-color);
    font-family: "Roboto Slab", serif;
    border-radius: 40px;
    padding: 10%;
    padding-top: 5%;
    margin-bottom: 30px;
}

.workouts--name {
    display: flex;
    flex-direction: column;
    font-size: 8vh;
    width: 100%;
}

.workouts--created {
    font-size: 3vh;
}

.workouts--exercise--name {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.workouts__div--a {
    text-decoration: none;
    border: 2px solid var(--secondary-accent-color);
    border-radius: 10px;
    padding: 2%;
    font-size: 0.4em;
    background-color: var(--secondary-accent-color);
    color: #fff;
    margin: 1%;
    box-shadow: 0 0 10px rgba(0, 0 , 0, .1);
}

.workouts__div--a2 {
    text-decoration: none;
    border: 2px solid var(--secondary-accent-color);
    border-radius: 10px;
    padding: 1%;
    font-size: 0.4em;
    background-color: var(--secondary-accent-color);
    color: #fff;
    width: 15%;
    box-shadow: 0 0 10px rgba(0, 0 , 0, .1);
}

.workouts__div--a3 {
    text-decoration: none;
    border: 2px solid var(--secondary-accent-color);
    border-radius: 10px;
    padding: 0.5em;
    font-size: 0.5em;
    background-color: var(--secondary-accent-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0 , 0, .1);
}

.info--table {
    width: 100%;
    font-size: 0.6em;
    margin: 0px;
    padding: 0px;
}

.info--table tr {
}

.info--table td {
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3vh;
}

.form-wrapper h1 {
    font-size: 40px;
}

.add-set-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

option {
    font-size: 100px;
    width: 100%;
}

.input {
    width: 50vh;
    height: 1em;
    font-size: 1em;
    margin-top: 2vh;
    text-align: center;
    border: 2px solid var(--accent-bg-color);
    padding: 10px;
    border-radius: 40px;
}

select {
    width: 9vh;
    height: 4vh;
    font-size: 75%;
    margin-top: 2vh;
    text-align: center;
}

.input__submit {
    display: flex;
    font-size: 0.5em;
    width: 10vh;
    height: 2em;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 40px;
    border: none;
    margin-top: 10px;
    background-color: var(--secondary-accent-color);
}

.search_form {
    font-size: 1em;
    flex-direction: row;
    width: 90%;
    align-items: center;
    text-align: center;
    align-content: flex-start;
    position: fixed;
    background-color: var(--accent-bg-color);
    min-height: 20%;
    border-radius: 20px;
    padding: 2em;
}

.search_form  label{
    width: 5%;
}

.search_form > select {
    width: 6em;
    margin: 0px;
    height: 3vh;
    font-size: 1em;
}

.search_form > input {
    width: 12%;
    margin-left: 0px;
}

.search_table {
    width: 100%;
    background-color: var(--accent-bg-color);
    margin-top: 25%;
    border: 2px solid black;
}

.search_table th {
    position: sticky;
    top: 30%;
    background-color: var(--accent-bg-color);
}

.search_table tr {
    background-color: #F2F0EF;
    border-top: 2px solid black;
    background-color: var(--accent-bg-color);
}

.search_table_body {
    text-align: center;
}

.search_table td {
    padding: 0.5em;
    background-color: var(--accent-bg-color);
}

.chart-container {
    padding-top: 80px;
    width: 800px;
}
.search_button {
    font-size: 1em;
    width: 50%;
    background-color: var(--secondary-accent-color);
    border-radius: 20px;
    border:1px solid #FFFAEC;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0 , 0, .1);
}

.value-input {
    width: 1%;
}

.body-weight-chart {
    width: 800px;
}

.past-exercises {
    margin-top: 1%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 50%;
    height: auto;
}

.past-exercises-button {
    background-color: white;
    border-radius: 20px;
    border: 2px solid var(--accent-bg-color);
    font-size: 2em;
}

@media (max-width: 1070px) {
    .quick-actions {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    .past-exercises {
        margin-top:5%;
        width: 90%;
    }

    .past-exercises-button {
        color: black;
        font-size: 3em;
    }
    section {
        width: 100%;
    }

    .nav__h1 {
        font-size: 3em;
        padding-left: 3%;
    }

    .nav__ul--li {
        display: inline-block;
        list-style-type: none;
        height: auto;
        width: auto;
        font-size: 2.5em;
        padding: 0px 15px 5px 15px;
    }

    .nav__ul--li--a {
        text-decoration: none;
        vertical-align: middle;
        height: 100%;
        width: auto;
        font-size: 0.8em;
        color: #FFFAEC;
    }

    .nav__ul--li--logged-in {
        display: inline-block;
        list-style-type: none;
        height: auto;
        width: auto;
        font-size: 2.5em;
    }

    .nav__ul--li--a--logged-in {
        text-decoration: none;
        vertical-align: middle;
        height: 100%;
        width: auto;
        font-size: 0.7em;
    }

    .login-wrapper {
        margin-top: 50%;
        width: 600px;
        padding: 30px 40px;
    }

    .login-wrapper h1 {
        font-size: 50px;
    }

    .input-box input {
        font-size: 2em;
    }

    .login-wrapper .btn {
        font-size: 1.8em;
    }

    .login-wrapper .register-link {
        font-size: 1.5em;
    }

    .content__div--buttons {
        height: 6vh;
        font-size: 2.2em;
        width: 60%;
    }

    .content__div h1 {
        font-size: 2.5vh;
    }

    .workouts__div {
        width: 70%;
    }

    .workouts--name {
        font-size: 3vh;
    }

    .form-wrapper h1 {
        font-size: 80px;
    }

    .input {
        width: 30vh;
    }

    .search_form {
        display: flex;
        font-size: 2em;
        flex-direction: row;
        width: 80%;
        flex-flow: row wrap;
    }

    .date_picker {
        font-size:85%;
    }

    .search_button {
        font-size: 1em;
        width: 15em;
    }

    .search_form  label{
        width: 50%;
        padding: 1%;
    }

    .search_form > select {
    }

    .search_form > input  {
        width: 30%;
    }

    .search_table {
        width: 95%;
        font-size: 25px;
        margin-top: 60%;
    }

    .search_table td {
        width: 100px;
        font-size: 20px;
        height: 4em;
    }

    .search_table th {
        position: sticky;
        top: 35%;
        background-color: var(--accent-bg-color);
    }

    .search_table a {
        font-size: 20px;
    }

    .workouts__div--a {
    }

    .workouts--created {
        font-size: 0.9vh;
    }
    .info--table {
    }

    .info--table tr {
    }

    .info--table th {
    }

    .info--table td {
        font-size: 1em;
    }

    .workouts__div--a3 {
        padding: 0.3em;
    }

    .search_text {
        height: 3em;
    }
    .value-input {
        font-size: 1em;
        width: 2%;
    }
    .value-control {
        font-size: 1em;
    }

}
