@import url('https://fonts.googleapis.com/css2?family=Nova+Slim&family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
  padding: 0;
}

body {
  /* font-family: 'Montserrat', sans-serif; */
  font-family: "Arimo", sans-serif;
  background-color: white;
  color: #1a1918;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1 {
  /* font-family: 'Nova Slim', sans-serif; */
  font-family: "Playfair Display", serif;
  font-size: 35px;
  color: #2B4075;
}

p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.btn:focus,
.btn:active,
.btn-close:focus,
.btn-close:active {
  outline: none !important;
  box-shadow: none !important;
}

.wrapper {
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  padding-block: 50px;
  position: relative;
  row-gap: 0px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}

.image-wrapper {
  width: 100%;
  height: fit-content;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.circle {
  width: 350px;
  height: 350px;
  background-color: rgba(126, 169, 209, 0.506);
  filter: blur(100px);
  z-index: -999;
  position: absolute;
}

.circle-top-left {
  border-bottom-right-radius: 100%;
  top: 0;
  left: 0;
}

.circle-bottom-right {
  border-top-left-radius: 100%;
  bottom: 0;
  right: 0;
}

.offcanvas {
  width: 50%;
  /* background-color: #5291ac; */
  background-color: #2B4075;
  color: white;
  padding-block: 50px;
}
.offcanvas-header {
  border-bottom: 1px solid white;
}

.offcanvas-title {
  color: white;
  font-weight: 600;
}

.offcanvas-body {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid white;
}

.toast-container {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 10px;
  max-width: 300px;
}

.success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.error {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.toast-body button {
  font-size: 8px;
  cursor: pointer;
}

.navbar-nav {
  display: flex;
  gap: 8px;
}

.menu {
  width: fit-content;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  width: fit-content;
}

.menu-toggle:hover {
  cursor: pointer;
}

.menu-toggle span {
  font-weight: 400;
  margin: 0;
}

.submenu-list {
  display: block;
  margin-left: 8px;
}

.submenu-list li {
  list-style: none;
  margin-bottom: 8px;
}

.submenu-list a {
  font-size: 12px;
  color: white;
  text-decoration: none;
}

.submenu-list a:hover {
  text-decoration: underline;
}

.list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: max-content;
  max-width: 100%;
  margin: auto;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  width: 100%;
}

.info-card-image,
.info-card-service {
  width: 200px;
  height: auto;
}

.info-card-image {
  aspect-ratio: 1/1;
}

.info-card-service {
  aspect-ratio: 4/3;
}

.info-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.info-card-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  gap: 8px;
}

.info-card-content h2 {
  font-size: 18px;
  font-weight: 700;
}

.info-card-actions {
  display: flex;
  gap: 8px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.form-auth-wrapper, .form-confirm-wrapper {
  padding: 24px;
  min-height: 100vh;
  justify-content: center;
  display: flex;
  /* background-color: rgba(126, 169, 209, 0.806); */
  background-color: #2b4075;
  align-items: center;
}

.form-signin, .form-confirm {
  padding: 24px;
  gap: 24px;
  flex-direction: column;
  display: flex;
  border-radius: 16px;
  background-color: white;
}

.file-uploader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.file-uploader input[type='file'] {
  position: absolute;
  opacity: 0;
}

.file-uploader img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.file-uploader img:hover {
  cursor: pointer;
}

.input-wrapper {
  width: 100%;
}

.input-wrapper input {
  display: block;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  outline: none;
  background: transparent;
  padding-inline: 8px;
}

.input-wrapper input:focus,
.input-wrapper input:active {
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
  border-bottom: 1px solid #000;
}

.select-wrapper {
  position: relative;
}

.select-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: -1;
  color: #56a4ff;
  font-size: 12px;
}

.input-wrapper .form-select {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  outline: none;
  background: transparent;
}

.input-wrapper .form-select:hover {
  cursor: pointer;
}

.input-wrapper .form-select option {
  background-color: white;
  color: #1a1918;
}

.input-wrapper .form-select:focus,
.input-wrapper .form-select:active {
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
  border-bottom: 1px solid #000;
}

.date-wrapper {
  display: flex;
  gap: 8px;
}

.color-picker {
  display: flex;
  gap: 8px;
  align-items: center;
}

.edit-button, .general-button, .delete-button, .pay-button, .submit-button {
  /* background-color: #4bd4ff; */
  background-color: #2B4075;
  /* color: #1a1918; */
  color: white;
  padding-block: 8px;
  padding-inline: 24px;
  text-align: center;
  width: fit-content;
  border-radius: 50px;
}

.delete-button {
  background-color: #ff4b4b;
}

.pay-button {
  /* background-color: #4bff4b; */
  background-color: #0bb80b;
}

.active, .inactive {
  padding-block: 8px;
  padding-inline: 24px;
  text-align: center;
  width: fit-content;
  border-radius: 24px;
}

.active {
  /* background-color: #4bff4b;  */
  background-color: #0bb80b;
}

.inactive {
  background-color: #ff4b4b;
}

.btn:hover {
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  color: white;
}

.btn-link {
  padding: 0;
}

.btn-link:hover {
  text-decoration: underline;
  color: #56a4ff;
}

.chart-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 14px;
}

.chart-actions {
  display: grid;
  grid-auto-rows: auto;
  align-items: center;
  gap: 12px;
  padding-inline: 24px;
}

.date-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.highlight, .date-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  align-items: center;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  text-align: center;
  width: 90px;
  height: 70px;
}

.highlight {
  /* background-color: #5291ac; */
  background-color: #5B78BA;
  color: white;
}

.date-container {
  /* background-color: #f0f0f0; */
  background-color: #efefe7;
  border: 1.5px solid #c3c3c3;
  color: #1a1918;
  display: flex;
}

.date-container:hover {
  /* background-color: #5291ac; */
  background-color: #2B4075;
  color: white;
}

.new-button {
  /* background-color: #4bd4ff; */
  background-color: #2B4075;
  /* color: #1a1918; */
  color: white;
  padding-block: 7px;
  padding-inline: 20px;
  text-align: center;
  width: fit-content;
  margin: auto;
}

.section-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.section-header .new-button {
  margin: 0;
}

.divider {
  width: 100%;
  background-color: black;
}

.content-group {
  display: grid;
  grid-template-columns: 0.25fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 0;
  margin-bottom: 24px;
}

.chairs {
  grid-column: span 1;
}

.portrait {
  display: block;
}

.landscape {
  display: none;
}

@media screen and (orientation: landscape) {
  .content-group {
    grid-auto-flow: column;
  }

  .chairs {
    grid-column: span 1 / auto;
  }

  .landscape {
    display: block;
  }

  .portrait {
    display: none;
  }
}

.time-slots-wrapper {
  display: flex;
  flex-direction: column;
}

.empty-cell{
  height: 35.1736px;
  margin-bottom: 9px;
}

.time-slots, .tasks {
  display: grid;
  height: 100%;
}

.time-slots {
  row-gap: 24px;
}

.tasks {
  grid-template-rows: repeat(240, 0.05fr);
}

.task {
  display: flex;
  width: 100%;
  padding: 8px;
  z-index: 1;
  border: 1px solid gray;
}

.task:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.task-item {
  height: fit-content;
  width: auto
}

.task-item__time, .task-item__employee, .task-item__service {
  font-size: 16px;
  color: #151313;
}

.task-item__time {
  font-weight: 600;
}

.modal-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-item .modal-item__time {
  /* font-size: 16px; */
  font-weight: 600;
}

.modal-footer {
  display: flex;
  justify-content: center;
}

.indicator {
  width: inherit;
  text-align: center;
  padding: 8px;
  font-size: 16px;
  color: white;
  /* background-color: #5291ac; */
  background-color: #5B78BA;
  margin-bottom: 8px;
}

.receipt-header, .print-receipt__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 18px;
}

.receipt-header h3 {
  font-weight: 700;
  font-size: 24px;
}

.receipt-header p {
  font-size: 20px;
}

.receipt-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.receipt-line {
  border: none;
  border-top: 2px solid black;
  color: black;
  background-color: black;
  opacity: 1;
}

.receipt-info, .receipt-services, .receipt-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
}

.receipt-info-left, .receipt-info-right, .receipt-total, .receipt-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.receipt-info-left p, .receipt-info-right p, .receipt-services p, .receipt-total__label, .receipt-total__value, .receipt-additional__label, .receipt-additional__empty, .receipt-additional__title {
  font-size: 14px;
}

.receipt-additional__title {
  margin-bottom: 8px;
}

.receipt-info-right p, .receipt-total p {
  text-align: right;
}

.receipt-total{
  display: grid;
  grid-template-columns: 1.5fr 0.75fr;
  margin-top: 12px;
  margin-bottom: 64px;
}

.receipt-total__labels, .receipt-total__values {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.receipt-total__label, .receipt-total__value {
  font-weight: 700;
}

.receipt-additional__service {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  outline: none;
  background: transparent;
}

.receipt-actions {
  justify-content: center;
  align-items: center;
}

.receipt-additional__label {
  color: #2AA3BE;
}

.receipt-additional__label:hover {
  cursor: pointer;
  text-decoration: underline;
  color: #1f7f94;
}

.receipt-additional__service {
  margin-block: 8px;
}

.filter-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.chart-actions .filter-wrapper {
  justify-content: center;
}


.filter-wrapper input, .filter-wrapper .form-select {
  border: 1px solid #c3c3c3;
  border-radius: 0;
  outline: none;
  background: transparent;
  padding-block: 8px;
}

.filter-wrapper input:focus,
.filter-wrapper input:active,
.filter-wrapper .form-select:focus,
.filter-wrapper .form-select:active {
  outline: none !important;
  box-shadow: none !important;
}

.filter-wrapper__employee {
  max-width: 50%;
}


.select-wrapper {
  position: relative;
}

.select-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 1;
  color: #56a4ff;
  font-size: 12px;
  pointer-events: none;
}

.filter-wrapper .form-select option {
  background-color: white;
  color: #1a1918;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.table-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.payment-form__employee {
  font-size: 25px;
  font-weight: 700;
  margin-left: 40px;
}

.payment-form__table {
  width: 100%;
  table-layout: fixed;
}

.payment-form__table th:nth-child(1), .payment-form__table td:nth-child(1) {
  width: 15%;
  padding-inline: 2px;
}
.payment-form__table th:nth-child(2), .payment-form__table td:nth-child(2) {
  width: 30%;
  padding-inline: 2px;
}
.payment-form__table th:nth-child(3), .payment-form__table td:nth-child(3) {
  width: 15%;
  padding-inline: 2px;
}
.payment-form__table th:nth-child(4), .payment-form__table td:nth-child(4) {
  width: 15%;
  padding-inline: 2px;
}
.payment-form__table th:nth-child(5), .payment-form__table td:nth-child(5) {
  width: 15%;
  padding-inline: 2px;
}
.payment-form__table th:nth-child(6), .payment-form__table td:nth-child(5) {
  width: 15%;
  padding-inline: 2px;
}
.payment-form__table th:nth-child(7), .payment-form__table td:nth-child(5) {
  width: 15%;
  padding-inline: 2px;
}

.payment-form__table th, .payment-form__table td {
  text-align: center;
  word-wrap: break-word;
  padding-block: 8px;
}

.payment-form__table th {
  font-weight: 700;
  font-size: 16px;
}

.payment-form__table td {
  font-size: 12px;
  font-weight: 500;
}

.report__table {
  width: 100%;
  table-layout: fixed;
}

.report__table th:nth-child(1), .report__table td:nth-child(1) {
  width: 10%;
}
.report__table th:nth-child(2), .report__table td:nth-child(2) {
  width: 22.5%;
}
.report__table th:nth-child(3), .report__table td:nth-child(3) {
  width: 22.5%;
}
.report__table th:nth-child(4), .report__table td:nth-child(4) {
  width: 22.5%;
}

.report__table th:nth-child(5), .report__table td:nth-child(5) {
  width: 22.5%;
}

.empty-row span {
  font-size: 16px;
  font-weight: 700;
}

.report__table th, .report__table td {
  text-align: center;
  word-wrap: break-word;
  padding-block: 8px;
}

.report__table th {
  font-weight: 700;
  font-size: 18px;
}

.report__table tr td span {
  font-size: 16px;
  font-weight: 500;
}

.paid {
  background-color: #8afc80a8;
}

.paid:hover, .unpaid:hover {
  cursor: pointer;
}

.paid:hover {
  background-color: #8afc80a8;
}

.unpaid:hover {
  background-color: #f0f0f0;
}

.payment-form__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-inline: 24px;
}

.payment-form__info__legend, .payment-form__info__fee {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-form__info__legend {
  flex-direction: column;
  align-items: flex-start;
  max-width: 45%;
}

.payment-form__info__legend__indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-form__info__legend__help-text {
  font-size: 9px;
}

.payment-form__info__legend__paid {
  width: 16px;
  height: 16px;
  background-color: #8afc80a8;
}

.payment-form__info__fee span {
  font-size: 24px;
  font-weight: 700;
}

.payment-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.logout a {
  font-size: 16px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.logout a:hover {
  color: #d63031;
  text-decoration: underline;
}

.priority {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.priority a {
  align-items: center;
  background-color: white;
  border-radius: 12px;
  border: none;
  color: #1a1918;
  font-size: 20px;
  font-weight: 600;
  height: 80px;
  padding-block: 8px;
  padding-inline: 24px;
  text-align: center;
  width: 200px;
}

@media(min-width: 768px){
  .offcanvas-title {
    font-size: 2rem;
  }
  .menu-toggle {
    font-size: 1.75rem;
  }
  .submenu-item {
    font-size: 1.5rem !important;
    line-height: 2.75rem !important;
  }
  .logout a, .priority a,.input-wrapper input,.input-wrapper select,.content-wrapper,.submit-button {
    font-size: 1.5rem!important;
  }
  .modal-sm {
    max-width: 500px;
  }
}
