:export {
  blue-color: #2963a3;
  lighter-blue-color: #3c76c1;
  dark-mode-lighter-color: #242424;
  dark-mode-darker-color: #121212;
  dark-mode-text-color: #f5f5f5;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.navbar {
  background-color: #2963a3;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  text-align: center;
  color: white;
  padding: 30px 0;
}

@media (max-width: 480px) {
  .navbar {
    gap: 30px;
    padding: 30px 10px;
  }
  .logo-wrapper h1 {
    font-size: 16px;
  }
}
.theme-button button {
  background-color: #3c76c1;
  border: 1px solid #2963a3;
  border-radius: 100%;
  padding: 10px;
}

.dark-mode {
  background-color: #121212;
  color: white;
}

.welcome {
  padding: 30px 0 30px 130px;
}

/* Statistics */
.statistics-cards {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
}

.statistics-card {
  border: 1px solid lightgray;
  background-color: white;
  padding: 20px;
  border-radius: 10%;
}
.statistics-card h3 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
}
.statistics-card p {
  font-weight: bold;
  font-size: 24px;
}
.statistics-card li {
  font-weight: bold;
  list-style: none;
  font-size: 24px;
}
.statistics-card .record p {
  font-size: 16px;
}
.statistics-card .lifts, .statistics-card .lifts-two {
  padding: 0 20px;
  margin: 0;
}
.statistics-card .summary-stats .summary-stat p {
  font-weight: bold;
}
.statistics-card span {
  font-weight: normal;
}

.workout-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.workout-cards .workout-cards-stacked {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
}
.workout-cards .workout-changes { /* left column */
  flex: 1 1 320px;
  min-width: 280px;
}
.workout-cards .records-card { /* right column */
  flex: 1 1 320px;
  min-width: 280px;
}
.workout-cards .workout-changes {
  display: flex;
  flex-direction: column;
  justify-content: none;
  align-items: none;
  gap: 20px;
  min-width: 220px;
  max-width: 350px;
  align-items: stretch;
}
.workout-cards .workout-changes .statistics-card {
  width: 100%;
  box-sizing: border-box;
}
.workout-cards .workout-changes .statistics-card .add-workout-form {
  padding: 0;
  max-width: 100%;
}
.workout-cards .workout-changes .statistics-card .add-workout-form form {
  display: inline-block;
  padding: 1em;
}
.workout-cards .workout-changes .statistics-card .add-workout-form form p, .workout-cards .workout-changes .statistics-card .add-workout-form form button, .workout-cards .workout-changes .statistics-card .add-workout-form form .smaller-stats input, .workout-cards .workout-changes .statistics-card .add-workout-form form .bigger-stats input, .workout-cards .workout-changes .statistics-card .add-workout-form form .exercises {
  width: 100%;
  box-sizing: border-box;
}
.workout-cards .workout-changes .statistics-card .add-workout-form form .bigger-stats {
  display: flex;
  flex-direction: column;
  justify-content: none;
  align-items: none;
  gap: 5px;
  width: 100%;
  padding-bottom: 5px;
}
.workout-cards .workout-changes .statistics-card .add-workout-form form .bigger-stats .date {
  color: gray;
  padding-left: 10px;
}
.workout-cards .workout-changes .statistics-card .add-workout-form form .smaller-stats {
  display: flex;
  justify-content: none;
  align-items: none;
  gap: 10px;
  width: 100%;
  padding-bottom: 10px;
}
.workout-cards .workout-changes .statistics-card .add-workout-form form input, .workout-cards .workout-changes .statistics-card .add-workout-form form .exercises {
  border: 1px solid lightgrey;
  height: 30px;
  padding-left: 10px;
}
.workout-cards .workout-changes .statistics-card .add-workout-form form .exercises {
  color: gray;
  height: 30px;
  padding-left: 5px;
}
.workout-cards .workout-changes .statistics-card .add-workout-form form .submit-button {
  background-color: #3c76c1;
  color: white;
  border: 1px solid #2963a3;
  height: 30px;
  border-radius: 5px;
  width: 100%;
}
.workout-cards .workout-changes .statistics-card .add-workout-form .error-message {
  color: #d32f2f;
  text-align: center;
  font-weight: bold;
  padding-top: 5px;
}
.workout-cards .workout-changes .statistics-card span {
  font-weight: normal;
}
.workout-cards .workout-changes .records-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: none;
  gap: 0;
  max-width: 500px;
}
.workout-cards .workout-changes .records-card .records-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}
.workout-cards .workout-changes .records-card .records-filter input, .workout-cards .workout-changes .records-card .records-filter button {
  height: 30px;
}
.workout-cards .workout-changes .records-card #records-start, .workout-cards .workout-changes .records-card #records-end {
  color: gray;
}
.workout-cards .workout-changes .records-card .records-graph {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: flex;
  justify-content: none;
  align-items: stretch;
  gap: 0;
}
.workout-cards .workout-changes .records-card .records-graph canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.delete-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: none;
  gap: 10px;
}
.delete-wrap .delete-workout-form {
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.delete-wrap .delete-workout-form input, .delete-wrap .delete-workout-form button {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.delete-wrap .delete-workout-form .workout-number {
  width: 100%;
  justify-content: center;
}

.error-message, .delete-error-message {
  color: #d32f2f;
  text-align: center;
  font-weight: bold;
  padding-top: 5px;
}

input, .exercises {
  border: 1px solid lightgrey;
  height: 30px;
  padding-left: 10px;
}

.exercises {
  color: gray;
  height: 30px;
  padding-left: 5px;
}

.delete-workout-form {
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.delete-workout-form input, .delete-workout-form button {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.delete-workout-form .workout-number {
  width: 100%;
  justify-content: center;
}
.delete-workout-form .submit-button {
  background-color: #3c76c1;
  color: white;
  border: 1px solid #2963a3;
  height: 30px;
  border-radius: 5px;
  width: 100%;
}

.workout-log-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 480px) {
  .workout-log-cards {
    flex-direction: column;
  }
}
.workout-log-cards .statistics-card {
  padding: 20px 0;
  padding-bottom: 10px;
}
.workout-log-cards .statistics-card .table-caption {
  font-weight: bold;
  text-align: start;
  padding-left: 30px;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 1em;
}
@media (max-width: 480px) {
  .workout-log-cards .statistics-card {
    max-width: 100%;
    padding: 0 2vw;
    box-sizing: border-box;
  }
  .workout-log-cards .statistics-card h3 {
    padding-top: 30px;
  }
}
.workout-log-cards .statistics-card .table-responsive {
  overflow-x: auto;
  max-width: 100%;
}
.workout-log-cards .statistics-card .table-responsive .logged-workouts {
  min-width: 450px;
  width: 100%;
  font-size: 16px;
}
@media (max-width: 480px) {
  .workout-log-cards .statistics-card .table-responsive {
    width: 100vw;
    max-width: 100vw;
  }
  .workout-log-cards .statistics-card .logged-workouts {
    min-width: 450px;
    font-size: 16px;
  }
  .workout-log-cards .statistics-card .statistics-card,
  .workout-log-cards .statistics-card .workout-log-cards {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .workout-log-cards .statistics-card .table-responsive {
    width: 100%;
    overflow-x: auto;
  }
}
@media (max-width: 480px) {
  .workout-log-cards .statistics-card .table-responsive .logged-workouts {
    width: 100%;
    min-width: 450px;
    font-size: 16px;
  }
}
.workout-log-cards .statistics-card .table-responsive table {
  border-collapse: collapse;
}
.workout-log-cards .statistics-card .table-responsive table thead tr:first-child {
  border-top: none;
}
.workout-log-cards .statistics-card .table-responsive table th, .workout-log-cards .statistics-card .table-responsive table td {
  padding: 8px;
}
.workout-log-cards .statistics-card .table-responsive table tr {
  border: solid lightgray;
  border-width: 1px 0;
}
.workout-log-cards .statistics-card .table-responsive table tr:last-child {
  border-bottom: none;
}

.delete-button {
  background-color: #3c76c1;
  color: white;
  border: 1px solid #2963a3;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}
.delete-button:hover {
  background-color: #2963a3;
}

#records-start, #records-end {
  color: gray;
}

#records-apply, #records-clear {
  background-color: #3c76c1;
  color: white;
  border: 1px solid #2963a3;
  height: 30px;
  border-radius: 5px;
  cursor: pointer;
  width: 20%;
}
#records-apply:hover, #records-clear:hover {
  background-color: #2963a3;
}

.workout-log-cards .statistics-card .table-responsive .clear-workouts-button {
  background-color: #3c76c1;
  color: white;
  border: 1px solid #2963a3;
  height: 30px;
  border-radius: 5px;
  width: 50%;
  display: block;
  margin-left: auto;
  cursor: pointer;
  margin-right: auto;
  margin-top: 10px;
}
.workout-log-cards .statistics-card .table-responsive .clear-workouts-button:hover {
  background-color: #2963a3;
}

.statistics-card .summary-stats {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.statistics-card .summary-stats .summary-stat {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}
.statistics-card .summary-stats .summary-stat p {
  font-size: 16px;
}
.statistics-card .summary-stats .summary-stat img {
  text-align: start;
}

.dark-mode-statistics {
  background-color: #242424;
  color: #f5f5f5;
}

.social-media-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
}

.footer-container {
  background-color: white;
  border-top: 1px solid lightgray;
  padding: 40px;
}
.footer-container h3 {
  text-align: center;
  color: #2963a3;
}

.dark-mode-footer {
  background-color: #242424;
}


.statistics-card.dark-mode-statistics {
  background-color: #242424;
  color: #f5f5f5;
}

/*# sourceMappingURL=style.css.map */
