/*
- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

/*****************/
/* HEADER STYLES */
/*****************/

.header {
  justify-content: space-around;
  position: fixed;
  top: 0;
  left: 0;
}
.header-back {
  border-right: 0.2rem solid currentColor;
  height: 100%;
  padding-right: 1.2rem;
}

/***************/
/* PUNCH STYLES */
/***************/

.punch-btn-box {
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 3.2rem;
}
.btn--punch {
  color: var(--primary-main);
  font-size: 3.6rem;
  width: 100%;
  padding: 1.6rem 3.2rem;
}
.btn--punch .icon {
  width: 3.2rem;
  height: 3.2rem;
}

.shift-btn-box {
  gap: 1.6rem;
}
.btn--shift {
  width: 100%;
}

.figure-title {
  align-self: center;
  margin-bottom: 1.2rem;
}
.break-time {
  gap: 0.5rem;
}
.punch-total-row {
  font-size: 2.4rem;
  font-variant: small-caps;
  margin-top: 1.2rem;
}

/********************/
/* TIMESHEET STYLES */
/********************/
.shifts-grid {
  grid-template-columns: 2fr 2fr 1fr;
}
.shifts-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  gap: inherit;
}
.shift-item {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  gap: inherit;
}
.shift-pending {
  color: var(--primary-tint-2);
}
.shift-refused {
  color: var(--red);
  font-weight: 500;
}

/******************/
/* ACCOUNT STYLES */
/******************/

.account-title {
  justify-content: center;
  margin-bottom: 1.2rem;
}
.account-title .icon {
  width: 3.2rem;
  height: 3.2rem;
}
.btn-log,
.btn-dialog {
  width: 100%;
  margin-bottom: 1.2rem;
}
.form--login {
  column-gap: 1.2rem;
}
.login-box input {
  width: 100%;
}

/*****************/
/* FOOTER STYLES */
/*****************/

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  justify-content: space-around;
}

.footer-item {
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--secondary-main);
  border-radius: var(--border-radius);
  justify-content: center;
  align-items: center;
  gap: 0;
  cursor: pointer;
  height: 100%;
  padding: 0 1.6rem;
  transition: 0.4s;
}
.footer-item:not(.footer-selected):hover {
  color: var(--tertiary-main);
  /* color: var(--blue-2); */
  border: 1px solid var(--tertiary-main);
}
.footer-item .icon {
  width: 3.2rem;
  height: 3.2rem;
}
.footer-selected {
  background-color: var(--tertiary-main);
}
