#main-modal,
#main-modal-profile {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

#modal-content {
  max-height: 800px;
  max-width: 600px;
  margin-top: 40px !important;
  padding-top: 60px !important;
  padding-bottom: 40px;
  padding: 60px 80px !important;
  position: relative;
}

.week-select-div {
  width: 100%;
  max-width: 500px;
}

#login-form-btn.active-btn,
#registration-form-btn.active-btn,
#registration-form-btn-mobile-ui.active-btn {
  background-color: black;
  margin-bottom: 20px;
  color: white;
  border: black;
  padding: 8px 20px;
}

.custom-input-modal::before {
  content: "+1";
  position: absolute;
  left: 16px;
  top: 34.2%;
  transform: translateY(-50%);
  background-color: #e1e1e177;
  padding: 8px 5px;
  border-radius: 3px 0 0 3px;
  border-right: none;
}

#login-form-btn,
#registration-form-btn,
#registration-form-btn-mobile-ui {
  background-color: transparent;
  /* border: black; */
  border-radius: 4px;
  color: black;
  margin-bottom: 20px;
  padding: 8px 20px;
}

.modal-content input,
.modal-content select {
  display: block;
  width: 100%;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s;
}

#btn-containers {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 30px;
}

#close-modal-btn {
  top: 20px !important;
}

.show-password-box {
  height: 20px;
}

.show-password-box label {
  margin-bottom: -4px !important;
}

.show-password-box input {
  width: 20px !important;
}

#user-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  min-width: 275px;
  opacity: 0;
}

.main-content-form {
  margin: 30px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.customer-portal-container {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  width: 100% !important;
  min-height: 90vh;
}

.main-content-customer-portal {
  margin: -60px 10% 0px 10% !important;
}

.details-modal-user-bookings {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.main-content-details-form {
  margin: 8% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.custom-btn {
  width: 100%;
  border: unset;
  text-align: left;
  padding: 16px 20px 16px 20px;
  color: white;
  background-color: var(--primary-button-color);
  font-weight: 600;
  border-radius: 5px;
}

.custom-btn-forward-week {
  width: 100%;
  border: unset;
  text-align: left;
  padding: 16px 20px 16px 20px;
  color: white;
  background-color: red;
  font-weight: 600;
  border-radius: 5px;
}

.further-weeks-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.custom-select-booky {
  color: grey !important;
  padding-left: 15px !important;
}

.main-content-form-stylist {
  margin: 10% 3% 10% 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.back-btn-services {
  font-size: 13px;
  color: grey;
  letter-spacing: 3px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}

.back-btn-services img {
  width: 34px;
}

.services-list-div {
  margin-top: 20px;
  /* max-height: 400px; */
  display: grid;
  gap: 0.8em;
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
}

header {
  padding-right: unset;
}

.week-select-div {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .week-select-div {
    width: 100%;
    max-width: 300px;
  }
}

.width-form-login {
  width: 65% !important;
}

.week-select-div button {
  background-color: rgba(255, 62, 62, 0.685);
  font-size: 17px;
}

.week-select-div button:last-child {
  background-color: rgba(128, 128, 128, 0.486);
}

.margin-form-booky {
  margin: 5% 0% 0% 0% !important;
}

.login-btn {
  width: 55%;
  background-color: rgba(255, 0, 0, 0.747) !important;
}

.login-button-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setup-account {
  cursor: pointer;
  font-size: 13px;
  color: rgba(128, 128, 128, 1);
  position: relative;
  transition:
    color 0.3s,
    transform 0.3s;
}

.setup-account::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  background-color: rgb(255, 0, 0);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}

.setup-account:hover {
  color: rgb(255, 0, 0);
  transform: translateY(-3px);
}

.setup-account:hover::before {
  transform: scaleX(1);
}

/**CSS FOR MODAL POPUP**/
.removebookmodal {
  display: none;
  position: fixed;
  z-index: 99;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: #f3f3f3de;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}

.modal-wrapper-remove {
  height: 300px;
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
  justify-content: center;
  background-color: white;
  border-radius: 20px;
  max-width: 80%;
}

.height-none {
  min-height: 300px;
  height: min-content;
}

.butonmodal_remove {
  width: 200px;
  background-color: white;
}

.butonmodal_remove:hover {
  background-color: black;
  color: white;
}

.modalbuttons-remove {
  display: flex;
}

.modal-content {
  padding: 20px 30px !important;
}

.modal-container-remove {
  padding: 5rem 8rem 5rem 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-container-remove h3 {
  font-weight: 500;
}

.modal-container-remove h5 {
  font-weight: 100 !important;
}

.modal-container-remove .modal-row {
  gap: 20px;
}

.booking-list-buttons {
  display: flex !important;
  /* width: 85% !important; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.welcome-btn {
  background-color: var(--primary-button-color);
  margin-bottom: 20px;
}

#view-appointments-final-btn {
  margin-top: 20px;
}

.modal-bottom-text {
  font-weight: 400 !important;
}

.error-text {
  min-height: 25px;
  color: red;
}

.form-container-select-time {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 10px;
}

.column-select-time {
  flex: 1;
}

.error-input {
  border: 1px solid rgba(255, 0, 0, 0.678) !important;
}

@media screen and (max-width: 700px) {
  .modal-container-remove {
    padding: 5rem 3rem 5rem 3rem;
  }
}

#initial-form-container.floaty {
  display: block;
  position: fixed;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}

.overlay-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 8;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

tr.cancelled td p:not(.cancel) {
  color: rgba(128, 128, 128, 0.85);
  text-decoration: line-through;
  text-decoration-color: red;
}

tr.user-booking td p {
  margin-bottom: 0;
}

tr.user-booking td:last-child {
  padding-right: 30px;
  position: relative;
}

tr.user-booking td:last-child button {
  display: none;
}

tr.user-booking:hover td:last-child button {
  display: block;
  position: absolute;
  font-size: 10px;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
}

tr.user-booking td:last-child button img {
  width: 14px;
  margin-right: 2px;
  margin-bottom: 4px;
}

/**AVAILABILITY SECTION CSS**/
.avail-block-timing {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: #6d6d6d;
}

.avail-block-timing select {
  margin-bottom: 0px;
  padding: 2px 30px 2px 12px;
  border: 1px solid #b4b4b4 !important;
  border-radius: 3px;
  color: #6d6d6dc7;
  width: 100%;
  line-height: 30px;
}

.tick-mark {
  width: 16px !important;
  height: 16px !important;
  border-radius: 2px !important;
  margin-right: 7px !important;
}

.avail-heading {
  font-size: 1rem;
  font-weight: 500;
}

.avail-tick-mark {
  display: flex;
  min-width: 125px;
  max-width: 125px;
}

.avail-input-timeSlot {
  display: flex;
  align-items: center;
  gap: 13px;
}

.tick-mark:checked ~ .tick-mark::after {
  border-color: #6d6d6d;
}

.avail-checked select {
  color: rgb(0, 0, 0);
  font-weight: 500;
}

.avail-block-timing ul {
  list-style: none;
  padding: 0;
}

.avail-block-timing li {
  margin-bottom: 10px;
}

.avail-block-timing li input[type="checkbox"] {
  margin-right: 5px;
}

.avail-block-timing label {
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: unset;
}

.order-cell {
  width: 100px;
  padding: 4px !important;
}

.order-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.order-buttons {
  display: flex;
  flex-direction: column;
}

.order-up,
.order-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 18px;
  border: none;
  background: #f0f0f0;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order-up:hover,
.order-down:hover {
  background: #ddd;
}

.staff-order {
  margin: 0 10px;
}

#staff-container,
#product-container {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#cancel-appointment:disabled,
#confirm-booking-btn:disabled,
#button-change-select:disabled {
  background-color: #8d8c8c !important;
}

#show-button {
  display: none;
  font-size: 8px;
  width: 120px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 4px;
}

#show-button:active {
  opacity: 80%;
}

#search-staff-button {
  height: 38px;
  width: 40px;
  line-height: unset;
  background-color: transparent;
}

#search-staff-button img {
  width: 36px;
}

#stripe-style-container {
  margin-top: 2rem;
  padding: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

#saved-cards-list {
  overflow-y: auto;
  max-height: 200px;
}

#stripe-style-container label {
  margin-bottom: 10px;
  display: block;
  color: #0570de;
}

#saved-cards-list {
  margin-bottom: 20px;
}

.saved-card {
  position: relative;
}

.checkmark-card {
  display: none;
  position: absolute;
  transform: rotate(45deg) translate(-50%, -50%);
  left: 90%;
  top: 40%;
  height: 23px;
  width: 10px;
  border-bottom: 3px solid red;
  border-right: 3px solid red;
}

.selected-card .checkmark-card {
  display: block;
}

#saved-cards-list div {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
}

#saved-cards-list div:hover {
  background-color: #e8e8e8;
}

#pay-saved-card-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: none;
}

#pay-saved-card-btn:hover {
  background-color: #0056b3;
}

#tips-modal {
  overflow-y: auto;
  overflow-x: hidden;
}

.custom-tip-group {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.custom-tip-group label {
  max-width: 150px;
  font-weight: bold;
}

#rebook-button a,
#rebook-section-button a {
  color: white;
  display: block;
  width: 100%;
}

#appointments-loading-spinner {
  top: 0;
}

.input-button-verify {
  justify-content: center;
  align-items: center;
}

.rebook-links-li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-bottom: 6px;
  padding: 6px;
}

.rebook-links-li:hover {
  background-color: #f8f8f8;
}

.payment-details {
  max-width: 400px;
  margin: 0 auto;
}

#pay-section {
  max-width: 300px;
}

#download-receipt img {
  margin-bottom: 0 !important;
}

#category-select {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
  margin-bottom: 0px;
  box-shadow:
    rgba(14, 63, 126, 0.08) 0px 0px 0px 1px,
    rgba(42, 51, 70, 0.05) 0px 2px 2px -1px,
    rgba(42, 51, 70, 0.06) 0px 4px 4px -2px,
    rgba(42, 51, 70, 0.06) 0px 6px 6px -3px,
    rgba(42, 51, 70, 0.05) 0px 8px 8px -4px,
    rgba(42, 51, 70, 0.05) 0px 12px 12px -6px,
    rgba(42, 51, 70, 0.05) 0px 28px 28px -10px;
}

.icon-date {
  width: 30px;
}

.icon-time {
  width: 24px;
  margin-left: 4px;
  margin-right: 2px;
}

.card-meta {
  margin-bottom: 0px;
  margin-top: 4px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

#resulting-days-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

#days-list li:hover,
#times-list li:hover {
  background-color: #f0f0f0;
}

.raw {
  display: flex;
  gap: 20px;
}

.col-5 {
  flex: 0 0 62.5%;
}

.col-3 {
  flex: 0 0 37.5%;
}

#resulting-days-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.raw {
  display: flex;
  gap: 20px;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

@media screen and (max-width: 350px) {
  .main-content-form {
    margin-top: 10px;
  }

  .service-display-box {
    justify-content: flex-start;
    text-align: left;
    overflow-x: auto;
  }

  #services-by-div {
    align-self: flex-start;
    width: 100%;
  }

  .services-list-div {
    margin-top: 10px;
  }

  #days-list,
  #times-list {
    flex-direction: row;
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
  }

  #days-list li,
  #times-list li {
    background-color: #f9f9f9;
  }

  #days-list li {
    width: 100%;
  }

  .col-12 {
    padding: 0;
  }
}

#form-title {
  margin-bottom: 10px;
  text-align: center;
}

#confirm-booking-btn {
  margin-top: 16px;
}

.welcome-btn[onclick] {
  margin-top: 20px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.staff-card {
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    rgba(14, 63, 126, 0.06) 0px 0px 0px 1px,
    rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 2px 2px -1px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px,
    rgba(42, 51, 70, 0.03) 0px 10px 10px -5px,
    rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}

.staff-card:hover {
  transform: scale(1.05);
  box-shadow:
    rgba(14, 63, 126, 0.08) 0px 0px 0px 1px,
    rgba(42, 51, 70, 0.05) 0px 2px 2px -1px,
    rgba(42, 51, 70, 0.06) 0px 4px 4px -2px,
    rgba(42, 51, 70, 0.06) 0px 6px 6px -3px,
    rgba(42, 51, 70, 0.05) 0px 8px 8px -4px,
    rgba(42, 51, 70, 0.05) 0px 12px 12px -6px,
    rgba(42, 51, 70, 0.05) 0px 28px 28px -10px;
  border-color: rgba(255, 0, 64, 0.71);
}

.staff-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 8px;
}

.staff-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.staff-card .card-title {
  font-weight: bold;
  font-size: 1em;
  margin: 2px 0;
  color: #333;
  text-transform: capitalize;
  letter-spacing: normal;
}

.staff-card .availability {
  font-size: 0.8em;
  color: #757575;
  margin-top: 4px;
}

.staff-card.selected {
  border-color: rgba(255, 0, 64, 0.71);
  border-width: 2px;
}

@media (min-width: 768px) {
  .staff-grid {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
  }
}

@media (max-width: 767px) {
  .staff-grid {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 20px;
  }

  .staff-card img {
    width: 70px;
    height: 70px;
  }

  .staff-card .card-title {
    font-size: 0.9em;
  }
}

.services-container {
  gap: 10px;
  margin-bottom: 10px;
}

.services-user-side-list-overflow {
  max-height: 66.5vh;
  overflow-y: scroll;
}

.service-display-box {
  cursor: pointer;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow:
    rgba(14, 63, 126, 0.06) 0px 0px 0px 1px,
    rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 2px 2px -1px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px,
    rgba(42, 51, 70, 0.03) 0px 10px 10px -5px,
    rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-button-color);
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin: 0 0 0.5rem 0;
  text-transform: capitalize;
  overflow: auto;
}

.show-price-service-card {
  display: flex;
}

.service-card-show-price-div {
  width: 100%;
}

.show-price-service-card-price {
  width: 60px;
  font-size: 1rem;
  color: #6c757d;
  display: flex;
  align-items: start;
  margin-right: 4px;
  text-align: right;
  justify-content: end;
}

.package-details-service-card p {
  font-size: 14px;
  color: #414e58;
  margin-bottom: 5px !important;
}

.package-details-service-card {
  margin-bottom: 15px;
  margin-left: 5px;
}

.service-duration {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

.tabs-container {
  gap: 0.5rem;
}

.tab-button {
  background: #ffffff;
  border: 1px solid #e9ecef;
  color: #212529;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: var(--primary-button-color);
  color: #ffffff;
  border-color: #212529;
}

.custom-select-booky {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 0.3rem;
  font-size: 1.3rem;
  background-color: #ffffff;
  max-width: 350px;
}

@media (min-width: 992px) {
  .tabs-container {
    flex: 1;
  }
}

@media (max-width: 700px) {
  .custom-select-booky {
    width: 100%;
    max-width: none;
  }
}

.service-list {
  gap: 10px;
}

#month-year-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 5px;
}

#month-year {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin: 0;
  text-align: left;
}

.direction-icon {
  font-size: 24px;
  cursor: pointer;
  color: #000;
  background: none;
  border: none;
  padding: 5px 10px;
  transition: color 0.3s;
}

.direction-icon:hover:not(:disabled) {
  color: rgba(255, 0, 64, 0.71);
}

.direction-icon:disabled {
  color: #ccc;
  cursor: not-allowed;
}

#days-list {
  display: flex;
  overflow-x: scroll;
  gap: 15px;
  margin-bottom: 5px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
  padding-left: 0;
}

#days-list li {
  min-width: 70px;
  height: 70px;
  text-align: center;
  padding: 5px;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  /* color: #000; */
  transition:
    background-color 0.3s,
    color 0.3s;
}

#days-list li[dataKey]:hover {
  background-color: #e0e0e0;
  color: #000;
}

#days-list li[dataKey]:active,
#days-list li[dataKey].selected {
  background-color: var(--primary-button-color);
  color: #fff;
  border-color: var(--primary-button-color);
}

#times-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  list-style: none;
  padding-left: 0;
}

#times-list li {
  padding: 8px !important;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
}

#times-list li:hover {
  background-color: #f5f5f5;
}

#times-list li:active {
  background-color: #e0e0e0;
}

#resulting-days-controls {
  display: none;
}

#booking-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#appointment-icon-ui {
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  #form-body {
    height: auto;
    padding: 10px;
  }

  #appointment-icon-ui img {
    width: 52px;
    height: 52px;
  }

  #month-year-container {
    flex-direction: column;
    gap: 10px;
  }

  #days-list {
    flex-wrap: nowrap;
  }

  #days-list li {
    min-width: 65px;
    height: 65px;
  }

  #date-picker-modal {
    display: none;
  }

  .tab-button {
    margin-bottom: 10px;
    gap: 10px;
    width: 45%;
  }

  .tabs-container {
    justify-content: space-between;
  }
}

.see-all-btn {
  background-color: var(--primary-button-color);
  margin-bottom: 20px;
  margin-top: 15px;
}

#category-select-landing {
  box-shadow:
    rgba(14, 63, 126, 0.06) 0px 0px 0px 1px,
    rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 2px 2px -1px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px,
    rgba(42, 51, 70, 0.03) 0px 10px 10px -5px,
    rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}

.booking-container {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.staff-calendar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: space-between;
}

.custom-select-booky {
  position: relative;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.selected-option {
  padding: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
}

.options-list li {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.options-list li:hover,
.options-list li.selected {
  background: #f0f0f0;
}

.staff-select-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.calendar-icon {
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s;
  padding-top: 0px;
  padding-bottom: 12px;
}

.calendar-icon:active {
  transform: scale(1.1);
  outline: none;
}

.month-navigation-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
}

.month-year {
  margin: 0;
  font-size: 1.25rem;
  white-space: nowrap;
}

.direction-icon {
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.direction-icon:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.days-container,
.times-container {
  width: 100%;
}

.times-container {
  overflow-y: scroll;
  max-height: 50vh;
}

optgroup-label {
  font-weight: bold;
  color: #333;
  padding: 0.5rem;
}

.days-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
}

.days-list li {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
  background: #fff;
  transition:
    background 0.2s,
    color 0.2s;
  min-width: 80px;
}

.days-list li.available {
  cursor: pointer;
}

.days-list li.available:hover {
  background: #f0f0f0;
}

.days-list li.selected {
  background: rgba(255, 0, 64, 0.71);
  color: #fff;
}

.days-list li.disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.times-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.times-list li {
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
  width: 100%;
}

.times-list li a {
  color: rgba(255, 0, 64, 0.71);
  text-decoration: none;
  display: block;
}

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

.download-receipt-user-bookings img {
  width: 20px;
  margin-bottom: 0px;
  font-weight: bold;
}

.download-receipt-user-bookings {
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: none;
}

.no-staff-avail {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: red;
}

.paid-icon {
  width: 24px;
  margin-bottom: 5px;
}

.next-available-container {
  width: 100%;
  text-align: center;
}

.next-available-btn {
  background-color: var(--primary-button-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background 0.2s;
}

.next-available-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.date-picker-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  /* padding: 1.5rem; */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  /* bottom: 0; */
  max-width: 360px;
  overflow: hidden;
}

.date-picker-modal[style*="block"] {
  display: flex;
  flex-direction: column;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100% !important;
  margin: 0 auto !important;
  border-radius: 8px;
  background-color: #f8f9fa !important;
}

.modal-selects {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.modal-selects div {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.max-w-fit-content {
  max-width: fit-content !important;
}

.custom-select-date-close {
  top: 7px;
  right: 10px;
  font-size: 18px;
  color: black;
}

.modal-selects select {
  flex: 1;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
  min-width: fit-content;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.days-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  padding: 5px;
  background: #fff;
  border: 1px solid #ddd;
  transition:
    background 0.2s,
    color 0.2s;
}

.days-grid span:hover {
  background: #f0f0f0;
}

.days-grid span.selected,
.days-grid span.current-day {
  background: rgba(0, 0, 0, 0.71);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.71);
}

.modal-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.modal-btn {
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  right: -125px;
  color: gray;
  background: #f8f9fa;
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
  animation: spinner-grow 0.75s linear infinite;
  position: relative;
  top: 30%;
}

.weekday-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  margin-bottom: 5px;
}

.weekday-labels span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.day.disabled {
  opacity: 0.5;
  pointer-events: none;
  background-color: #f0f0f0;
  color: #999;
}

.today-modal-btn {
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  background: #fff;
  transition:
    background 0.2s,
    color 0.2s;
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-left: auto;
  width: 100%;
  margin-left: 20px;
}

.confirmation-details {
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: #333;
  max-width: 500px;
  margin: auto;
}

.detail-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  gap: 30px;
}

.label {
  flex: 0 0 120px;
  font-weight: bold;
  color: #222;
  text-align: left;
}

#our-fav-customer-portal {
  margin-bottom: 20px;
}

.value {
  flex: 1;
  color: #444;
  text-align: left;
}

.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.leave-confirmation-modal {
  background-color: white;
  padding: 35px;
  border-radius: 8px;
  text-align: left;
  width: 550px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-content h2 {
  margin: 0 0 10px;
  font-size: 1.5em;
}

.modal-content p {
  margin: 0 0 20px;
  color: #666;
}

.modal-buttons {
  display: flex;
  justify-content: space-around;
}

#confirm-leave-btn,
#cancel-leave-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

#confirm-leave-btn.confirm {
  background-color: black;
  color: white;
  width: 50%;
}

#cancel-leave-btn.cancel {
  background-color: white;
  color: black;
  border: 2px solid black;
  width: 50%;
}

.modal-btn:hover {
  opacity: 0.9;
}

.exit-btn-services {
  font-size: 15px;
  letter-spacing: 1px;
  gap: 4px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  border: none;
  color: grey;
  text-transform: uppercase;
  font-family: fieldwork-hum, sans-serif;
}

.home-btn-services {
  width: 32px;
  padding-bottom: 2px;
  margin-right: 10px;
  cursor: pointer;
}

.appointment-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  text-align: left;
}

.appointment-card:hover {
  transform: translateY(-2px);
}

#past-cards .appointment-card {
  background-color: #f8f9fa;
  border-color: #dee2e6;
}

#past-cards .appointment-card.cancelled {
  background-color: #f8d7da4f;
  border-color: #f5c6cb;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  overflow: auto;
}

.card-date-time,
.card-end-time {
  font-size: 1rem;
  color: #666;
  margin: 5px 0;
}

.card-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.card-actions a,
.card-actions button {
  text-decoration: underline;
  color: rgba(255, 0, 64, 0.71);
  border: none;
  background: none;
  padding: 0;
  font-size: 0.95rem;
  cursor: pointer;
}

.card-actions button:disabled {
  color: #6c757d;
  cursor: not-allowed;
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
}

.pagination-button {
  padding: 8px 16px;
  border: 1px solid rgba(255, 0, 64, 0.71);
  background-color: rgba(255, 0, 64, 0.71);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.pagination-button:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  cursor: not-allowed;
  color: white;
}

.view-past-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: rgba(255, 0, 64, 0.71);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modal-content {
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content p {
  margin: 10px 0;
  color: #666;
  font-size: 0.85rem;
}

#modal-details-content {
  margin: 15px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: bold;
  color: #333;
  flex: 0 0 40%;
  text-align: left;
}

.detail-value {
  color: #474747;
  flex: 0 0 55%;
  text-align: left;
}

.modal-cancel-btn,
.receipt-btn {
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(255, 0, 64, 0.71);
  border: 1px solid rgba(255, 0, 64, 0.71);
  color: white;
  border-radius: 4px;
  min-width: 300px;
  width: 100%;
}

.modal-cancel-btn:disabled {
  color: #a79d9d;
  cursor: not-allowed;
}

.receipt-btn {
  border: 2px solid rgba(255, 0, 64, 0.71);
  color: rgba(255, 0, 64, 0.71);
  font-weight: bold;
  background-color: #f8d7da4f;
}

.picture-uploader {
  width: 180px;
  margin: 0 auto;
  text-align: center;
}

.picture-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
}

.picture-uploader-edit {
  width: 160px;
  margin: 0 auto;
  text-align: center;
}

.picture-wrapper-edit {
  position: relative;
  width: 160px;
  height: 160px;
}

.picture-preview {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.picture-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.picture-wrapper:hover .hover-overlay {
  opacity: 1;
}

.picture-wrapper-edit:hover .hover-overlay {
  opacity: 1;
}

.upload-icon {
  width: 32px;
  height: auto;
}

.picture-preview {
  z-index: 1;
}

.picture-input {
  z-index: 10;
}

.hover-overlay {
  z-index: 2;
  pointer-events: none;
}

.logo-container {
  margin-bottom: 20px !important;
}

.picture-error-text {
  margin-top: 2px;
  text-align: center;
  color: red;
  height: 24px;
}

.no-bookings-span {
  margin: 0px 10px;
}

.no-bookings-span a {
  display: block;
}

.staff-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 6px;
  vertical-align: middle;
  margin-bottom: 2.5px;
}

.staff-avatar-manage {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}

.avatar-cell {
  width: 34px !important;
}

.items-per-page-label {
  display: inline-block !important;
  margin-bottom: unset !important;
}

.items-per-page-label select {
  padding: unset !important;
  font-size: 14px !important;
}

#products-table tfoot {
  position: sticky;
}

.table-wrapper-prods {
  max-height: 700px;
  overflow-y: auto;
}

.table-wrapper-prods table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrapper-prods thead th {
  position: sticky;
  top: 0;
  z-index: 10;
}

.table-wrapper-prods tfoot tr {
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.table-wrapper-prods tfoot tr td {
  background-color: #01256c !important;
}

.selected-option span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.main-right-customer-portal-header {
  display: flex;
}

.mobile-ui-divider-register,
.mobile-ui-divider {
  display: none;
}

.register-modal-text-mobile-ui-img {
  display: none;
}

#reset-code-input {
  margin-left: 0px !important;
  width: 60% !important;
}

.main-modal-content-verify {
  margin-top: 15vh !important;
}

.phone-verify-wrapper-popup {
  max-width: 500px;
  min-width: 300px;
  margin: auto;
  margin-top: 50px;
}

.phone-verify-heading-popup {
  font-size: 20px;
  color: #007bff;
}

.verify-phone-number-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.popup-input-button-verify {
  max-width: 300px;
  margin: auto;
}

.popup-input-button-verify input {
  padding: 8px !important;
}

.no-booking-user-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.no-bookings-span {
  font-weight: 500;
  font-size: 18px;
}

.no-booking-img {
  width: 70px;
}

#active-events,
#past-events {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px !important;
}

#upcoming-cards,
#past-cards {
  width: 96%;
  max-height: 65vh;
  overflow-y: scroll;
  margin-top: 5px;
}

.logo-wrapper-user-bookings {
  pointer-events: none;
  margin-bottom: 5px !important;
  margin-top: -70px !important;
}

.accordion-button {
  font-weight: 600;
  font-size: 20px;
}

.accordion-button:focus {
  box-shadow: unset;
}

.accordion-button:not(.collapsed) {
  background-color: #cfe2ff4d;
  color: #545454 !important;
}

.accordion-button.collapsed {
  background-color: #d2d2d2;
}

.accordion-body {
  padding-top: 10px;
  padding-bottom: 10px;
}

#user-cnt {
  min-height: 90vh;
}

.empty-day {
  visibility: hidden !important;
}

.current-day {
  background-color: rgb(119, 119, 119) !important;
}

.not-live-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.not-live-wrapper {
  gap: 10px;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.not-live-booky-logo {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 16vh;
}

.not-live-booky-logo img {
  max-width: 300px;
  width: 50%;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .register-modal-text-mobile-ui-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }

  .user-bookings-main {
    padding: unset !important;
  }

  .accordion-body {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .accordion-button {
    font-size: 18px;
  }

  .user-bookings-br {
    display: none;
  }

  #active-events {
    margin-top: 0px !important;
  }

  #appointments-div {
    margin-top: 0.9rem !important;
  }

  #upcoming-cards,
  #past-cards {
    width: 96%;
    max-height: 65vh;
    overflow-y: scroll;
    margin-top: 0px;
  }

  .upcoming-appointments {
    font-size: 20px;
  }

  .register-modal-text-mobile-ui-img img {
    width: 100px;
  }

  .card-title {
    font-size: 16px;
  }

  #book-link {
    margin-bottom: 10px;
  }

  .basic-info-inputs-phone-verify {
    margin-bottom: 10px;
  }

  .verify-phone-resend {
    margin-top: 10px !important;
  }

  .custom-input-number {
    max-width: 180px;
  }

  .card-end-time {
    font-size: 14px;
  }

  #email-verify-modal-wrapper br {
    display: none;
  }

  .card-date-time {
    font-size: 14px;
  }

  .booking-container {
    padding: 0.5rem;
    gap: 0.9rem;
    display: none;
  }

  .days-list {
    padding-top: unset !important;
    padding-bottom: 2px;
    margin-bottom: 5px !important;
  }

  .times-container {
    max-height: 52.7vh;
  }

  .confirmation-details {
    font-size: 17px;
  }
  .custom-select-booky {
    font-size: 0.9rem;
  }

  .detail-row {
    gap: 10px;
  }

  .detail-row-confirmation {
    gap: unset !important;
  }

  .mobile-ui-divider-register,
  .mobile-ui-divider {
    display: block;
    position: absolute;
    left: 0;
    border: 1px solid black;
    height: 0px;
    width: 100%;
    margin-bottom: 5px;
  }

  .staff-select-img {
    width: 35px;
    height: 35px;
  }

  .calendar-icon {
    font-size: 1.25rem;
  }

  .month-year {
    font-size: 1rem;
  }

  .direction-icon {
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
  }

  .no-booking-user-message {
    gap: 5px;
  }

  .days-list {
    flex-wrap: wrap;
  }

  .days-list li {
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    min-width: 60px;
  }

  .selected-option span {
    font-size: 16px;
  }

  .times-list li {
    font-size: 0.9rem;
  }

  .next-available-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .date-picker-modal {
    position: fixed;
    display: block;
    bottom: 0;
    min-height: max-content;
    top: 60%;
  }

  .services-user-side-list-overflow {
    max-height: 68.4vh;
    overflow-y: scroll;
  }

  .popup-input-button-verify input {
    max-width: 160px;
    margin: auto;
  }

  #phone-verify-button-popup {
    max-width: 120px;
  }

  .customer-portal-container {
    width: 100%;
    margin: 0px !important;
    width: 100% !important;
    padding-bottom: 0px !important;
    padding-top: 20px !important;
  }

  #category-select {
    padding: 6px;
  }

  .logo-container {
    margin-top: 0px;
    pointer-events: none;
    margin-bottom: 10px !important;
  }

  .service-card {
    padding: 0.77rem;
  }

  .staff-card {
    padding: unset;
    padding-top: 5px;
    padding-bottom: 4px;
  }

  .staff-card img {
    padding-bottom: 3px;
  }

  .mobile-menu-container {
    width: 48px;
  }

  .category-section {
    margin-top: 10px;
  }

  .home-btn-services {
    margin-right: 0px !important;
    padding: unset !important;
    width: 48px !important;
  }

  .dropdown-toggle::after {
    display: none !important;
  }

  .services-container {
    gap: 4px !important;
    margin-bottom: 5px;
  }

  .tab-button {
    font-size: 16px;
    padding: 0.3rem 1rem;
  }

  #our-fav-customer-portal {
    margin-bottom: 15px !important;
  }

  .no-booking-img {
    width: 50px;
  }

  .header-logo {
    width: 110px;
  }

  .not-live-header-logo {
    width: 150px;
  }

  .services-list-div {
    margin-top: unset;
  }

  .main-content-customer-portal {
    margin: -60px 0 0 0 !important;
  }

  #stylist-block {
    margin-top: 5px !important;
  }

  #stylist-cards-landing {
    padding: 10px;
  }

  #stylist-cards {
    padding: 10px;
  }

  #form-title {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .staff-card {
    border: none !important;
  }

  .staff-card img {
    border-radius: 50%;
  }

  .see-all-btn {
    margin-bottom: 15px;
  }

  #stylist-block h4 {
    margin-bottom: 3px;
  }

  #form-body h4 {
    font-size: 18px;
  }

  #form-body h5 {
    font-size: 16px;
  }

  .register-mobile-ui-break-line {
    display: none;
  }

  #user-cnt {
    width: 100% !important;
    margin: unset !important;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 100vh;
  }

  .logo-wrapper-user-bookings {
    pointer-events: none;
    margin-bottom: 5px !important;
    margin-top: -40px !important;
  }

  #appointments-div {
    margin-top: 1.4rem;
  }

  .icon-date {
    width: 24px;
  }

  .icon-time {
    width: 20px;
    margin-left: 2.5px;
    margin-right: 3px;
  }

  .card-meta {
    margin-bottom: 0px;
    margin-top: 4px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
  }
}

@media screen and (max-width: 500px) {
  .leave-confirmation-modal {
    max-width: 90vw;
  }
}

#register-modal-text-mobile-ui,
#login-right-modal-text-mobile-ui {
  display: none;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

#register-modal-text-mobile-ui button,
#login-right-modal-text-mobile-ui button {
  margin-bottom: unset;
  background-color: red;
  width: 150px;
  color: whitesmoke;
  border: none;
  border-radius: 5px;
  height: 40px;
}

#register-modal-text-mobile-ui h4,
#login-right-modal-text-mobile-ui h4 {
  font-size: 18px;
}

#login-right-modal-text-mobile-ui {
  margin-top: 20px;
}

#register-modal-text-mobile-ui {
  margin-top: 20px;
  margin-bottom: 10px;
}

#confirmed-icon-ui {
  margin-top: 10px;
  display: none;
}
#confirmed-icon-ui img {
  margin-bottom: 15px;
}

#edit-prod-info-form-profile {
  margin-bottom: 50px;
}

.modal-content-user-bookings {
  margin-top: 15vh !important;
}

.mobile-profile-img {
  width: 40px;
}
