/* FONTS */
/* COLORS */
/* ALIGNMENTS */
.text-center {
  text-align: center !important;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2 {
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: rgba(17, 17, 17, 0.5);
  transition: color 0.3s;
}
a:hover {
  color: #111111;
}

html {
  scroll-behavior: smooth;
}
html .turbo-progress-bar {
  height: 0.5rem;
  background-color: #111111;
  border-bottom-right-radius: 0.25rem;
}
html body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100dvh;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #111111;
  background-color: #ffffff;
}
html body .app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.5);
}
html body .app-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
}
@media (min-width: 1025px) {
  html body .app-header__inner {
    margin: 0 auto;
    width: 80dvw;
  }
}
html body .app-header__inner .app-logo {
  display: block;
  padding: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #111111;
}
@media (min-width: 768px) {
  html body .app-header__inner .app-logo {
    padding: 0.5rem 1rem;
  }
}
html body .app-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  html body .app-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
html body .app-navigation a {
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #111111;
  background-color: #ffffff;
  border-radius: 0.25rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  html body .app-navigation a {
    padding: 0.25rem 0.5rem;
  }
}
html body .app-navigation a .app-icon {
  font-size: 2rem;
}
@media (min-width: 768px) {
  html body .app-navigation a .app-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  html body .app-navigation a span {
    display: none;
  }
}
html body .app-navigation a:hover, html body .app-navigation a.active {
  color: #ffffff;
  background-color: #111111;
}
html body .app-navigation a.logout {
  color: #9a1818;
}
html body .app-navigation a.logout:hover {
  color: #ffffff;
  background-color: #9a1818;
}
html body .app-main {
  flex: 1;
  margin-bottom: 4.25rem;
}
@media (min-width: 1025px) {
  html body .app-main {
    margin: 0 auto;
    width: 80dvw;
  }
}
html body .app-main .app-section {
  padding: 1.5rem;
}
html body .app-main .app-section.panel .panel__header {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1rem;
  text-align: center;
  background-color: rgba(17, 17, 17, 0.05);
  border-radius: 0.25rem;
}
html body .app-main .app-section.panel .panel__header .panel__subtitle {
  font-weight: bold;
  font-style: italic;
}
html body .app-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  background-color: #111111;
}
@media (min-width: 1025px) {
  html body .app-footer {
    position: static;
  }
}
html body .app-footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 1rem;
}
@media (min-width: 1025px) {
  html body .app-footer__inner {
    margin: 0 auto;
    width: 80dvw;
  }
}
html body .app-footer__inner.center {
  display: block;
  font-size: 0.85rem;
  text-align: center;
}
html body .app-footer a {
  color: rgba(255, 255, 255, 0.75);
}
html body .app-footer a:hover {
  color: #ffffff;
}
html body .app-footer .stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem;
}
html body .app-footer .stat__label {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
html body .app-footer .stat__label span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}
html body .app-footer .stat__value {
  padding: 2px 0.25rem;
  border-radius: 0.25rem;
}
html body .app-footer .stat__value.danger {
  background-color: #9a1818;
}
html body .sf-toolbar {
  display: none;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .app-grid.two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .app-grid.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .app-grid.four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .app-grid.five {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .app-form {
    margin: 0 auto;
    width: 50dvw;
  }
}
@media (max-width: 767px) {
  .app-form .app-grid {
    gap: 0;
    margin-bottom: 1rem;
  }
}
.app-form .form-group {
  margin-bottom: 1rem;
}
.app-form .form-group:last-child {
  margin-bottom: 0;
}
.app-form .form-group .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.app-form .form-group .form-control {
  box-sizing: border-box;
  padding: 0.5rem;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background-color: #ffffff;
  border: 1px solid #111111;
  border-radius: 0.25rem;
}
.app-form .form-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
}
@media (max-width: 767px) {
  .app-form .form-actions {
    margin-top: 1rem;
  }
}

.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem;
  text-decoration: none;
  text-align: center;
  color: #111111;
  border: 1px solid #111111;
  border-radius: 0.5rem;
}
.app-card__top {
  margin-bottom: 0.5rem;
}
.app-card__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.app-card__dow {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.app-card__date {
  font-size: 1.5rem;
  font-weight: bold;
}
.app-card__meta {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.app-card__meta .badge,
.app-card__meta .chip {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  background-color: rgba(17, 17, 17, 0.1);
  border-radius: 0.5rem;
}
.app-card__row {
  margin-bottom: 0.5rem;
}
.app-card__row:last-child {
  margin-bottom: 0;
}
.app-card__worked {
  font-size: 2rem;
  font-weight: bold;
}
.app-card__hours {
  color: rgba(17, 17, 17, 0.65);
}
.app-card__break {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(17, 17, 17, 0.5);
}

.app-button {
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: #111111;
  background-color: rgba(17, 17, 17, 0.15);
  border: 2px solid #111111;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s;
}
.app-button.outline {
  background-color: transparent;
  border-color: transparent;
}
.app-button.outline.danger {
  color: #9a1818;
  background-color: transparent;
  border-color: transparent;
}
.app-button.outline.danger:hover {
  color: #ffffff;
  background-color: #9a1818;
}
.app-button:hover {
  color: #ffffff;
  background-color: #111111;
}
.app-button.info {
  color: #4646e4;
  background-color: rgba(70, 70, 228, 0.15);
  border-color: #4646e4;
}
.app-button.info:hover {
  color: #ffffff;
  background-color: #4646e4;
}
.app-button.success {
  color: #1f8f1f;
  background-color: rgba(31, 143, 31, 0.15);
  border-color: #1f8f1f;
}
.app-button.success:hover {
  color: #ffffff;
  background-color: #1f8f1f;
}
.app-button.warning {
  color: #d59420;
  background-color: rgba(213, 148, 32, 0.15);
  border-color: #d59420;
}
.app-button.warning:hover {
  color: #ffffff;
  background-color: #d59420;
}
.app-button.danger {
  color: #9a1818;
  background-color: rgba(154, 24, 24, 0.15);
  border-color: #9a1818;
}
.app-button.danger:hover {
  color: #ffffff;
  background-color: #9a1818;
}
.app-button:disabled {
  color: #111111;
  background-color: rgba(17, 17, 17, 0.15);
  border-color: #111111;
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.week-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.week-nav .app-button {
  width: auto;
}

.app-label {
  display: block;
  padding: 0.5rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: #111111;
  background-color: rgba(17, 17, 17, 0.15);
  border: 2px solid #111111;
  border-radius: 0.25rem;
}
.app-label.info {
  color: #ffffff;
  background-color: #4646e4;
  border-color: #4646e4;
}
.app-label.success {
  color: #ffffff;
  background-color: #1f8f1f;
  border-color: #1f8f1f;
}
.app-label.warning {
  color: #ffffff;
  background-color: #d59420;
  border-color: #d59420;
}
.app-label.danger {
  color: #ffffff;
  background-color: #9a1818;
  border-color: #9a1818;
}

.week-actions {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .week-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    margin-top: 0;
  }
}

.week-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .week-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .week-stats span {
    display: none;
  }
}
.week-stats .stat-card {
  padding: 1rem;
  text-align: center;
  background-color: rgba(17, 17, 17, 0.025);
  border: 1px solid #111111;
  border-radius: 0.25rem;
}
.week-stats .stat-card__label {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
}
.week-stats .stat-card__value {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(17, 17, 17, 0.5);
}

.app-progress {
  margin-top: 1.5rem;
  background-color: #ffffff;
}
.app-progress .progress__top {
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .app-progress .progress__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}
.app-progress .progress__top .progress__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #111111;
}
@media (max-width: 767px) {
  .app-progress .progress__top .progress__label {
    margin-bottom: 0.25rem;
    text-align: center;
  }
}
.app-progress .progress__top .progress__value {
  font-size: 0.95rem;
  font-weight: bold;
  color: #111111;
}
@media (max-width: 767px) {
  .app-progress .progress__top .progress__value {
    text-align: center;
  }
}
.app-progress .progress__top .progress__value span {
  font-size: 0.85rem;
  font-weight: normal;
  font-style: italic;
  color: rgba(17, 17, 17, 0.75);
}
.app-progress .progress__bar {
  position: relative;
  height: 1rem;
  background-color: rgba(17, 17, 17, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}
.app-progress .progress__bar .progress__fill {
  height: 100%;
  background-color: #111111;
  border-radius: 0.5rem;
  transition: width 0.3s;
}

.app-alert {
  margin: 1.5rem 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #111111;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 1px rgba(17, 17, 17, 0.2);
}
@media (min-width: 768px) {
  .app-alert {
    margin: 1.5rem;
  }
}
.app-alert.info {
  color: #4646e4;
  background-color: rgba(70, 70, 228, 0.25);
  border-color: #4646e4;
}
.app-alert.success {
  color: #1f8f1f;
  background-color: rgba(31, 143, 31, 0.25);
  border-color: #1f8f1f;
}
.app-alert.warning {
  color: #d59420;
  background-color: rgba(213, 148, 32, 0.25);
  border-color: #d59420;
}
.app-alert.error {
  color: #9a1818;
  background-color: rgba(154, 24, 24, 0.25);
  border-color: #9a1818;
}

/*# sourceMappingURL=app.output.css.map */
