:root {
    --main-bg-color: #F5F5F5;
    --secondary-bg-color: #e5aeb1;
    --primary-font-color: #333;
    --secondary-font-color: #EA2831;
}

html, body {
    background-color: var(--main-bg-color);
    font-family: "Inter", sans-serif;
}

h1 {
    padding: 20px 0;
    text-align: center;
    margin-bottom: 0;
}
h2.greetings {
    margin-bottom: 20px;
}

/* navigation many */
ul.nav {
    display: block;
    position: fixed;
    bottom: 0%;
    width: 100%;
    height: 75px;
    z-index: 10000;
    background-color: var(--main-bg-color);
    border: none;
    -webkit-box-shadow: 2px 5px 11px -1px rgba(0,0,0,0.54);
    box-shadow: 2px 5px 11px -1px rgba(0,0,0,0.54);
}
ul.nav li {
    display: inline-block;
    width: 30%;
    text-align: center;
    padding: 0;
    font-size: 1.8em;
    height: 100%;
}
ul.nav li a span {
    display: none;
}
ul.nav li:has(a.active) {
    background-color: #ccc;
}
ul.nav li a.active {
    color: var(--main-bg-color);
}
footer {
    margin-bottom: 70px; /* to avoid conflict with menu */
    text-align: center;
}


.header-dashboard {
    margin: 10px 0;
}
.header-dashboard .align-self-center {
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
}
.sub-title-dashboard {
    text-align: center;
    font-size: 1.4em;
    margin-top: 30px;
}

.movement-list div {
    margin-bottom: 10px;
}
/* dashboard */
.card {
    margin-bottom: 20px;
}

/* performance */
.movement-list a {
    width: 100%;
    display: inline-block;
    height: 70px;
    text-align: center;
    line-height: 60px;
    border: 1px solid #ddd;
    background-color: #000;
    color: #FFF;
    font-size: 1.5em;
    text-decoration: none;
    text-transform: uppercase;
    background-image: url("../images/work-in-progress.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
    font-weight: bold;
}
table {
    width: 100%;
}
table thead {
    background-color: var(--main-bg-color);
    text-align: center;
    font-weight: bold;
}
svg.trophy {
    height: 40px;
    width: 40px;
}

/* forms */
textarea, input[type="text"], input[type="password"], input[type="email"], input[type="number"], select {
    width: 100%;
    resize: vertical;
}
form div {
    margin-bottom: 10px;
}

/** workout score form */
form div>div:has(.reps_or_time)::after {
    content: " -- OR --";
    font-size: 14px;
    display: block;
    clear: both;
    color: grey;
    text-align: center;
    margin-top: 10px;
}
/** score */
ul.score-list, ul.score-list li {
    list-style: none;
    padding: 0;
    margin: 0 0 5px;
}
ul.score-list .list-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-bg-color);
    text-align: center;
    border-radius: 5px;
    vertical-align:top;
    line-height: 40px;
    margin-right: 5px;
}
ul.score-list .list-log {
    display: inline-block;
}
ul.score-list span {
    display: block;
}
ul.score-list span.log-title {
    font-weight: bold;
    font-size: 1.1em;
}
ul.score-list span.log-sub-title {
    font-size: 0.8em;
    color: var(--secondary-font-color);
}
