@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");

* {
  box-sizing: border-box;
  /* margin: 1%; */
  padding: 0;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background-color: rgb(1, 5, 9);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 90vh; */
  /* padding-top: 100px; Added to prevent content from overlapping with the navbar */
  background-color: #f2f0ef;
  color: black;
}

.navbar {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 50px;
  /* background-color: rgb(1, 5, 9); */
  background-color: #faf8ff;
  color: #000000;
  position: fixed; /* Make the navbar fixed */
  top: 0; /* Glue it to the top */
  left: 0;
  z-index: 1000; /* Ensure it's on top of other elements */
  margin: 0;
}

.navbar * {
  margin: 0;
}

.logo img {
  height: 40px;
}

.nav-links {
  margin-left: auto; /* Push the nav-links to the right */
}

.nav-links a {
  /* color: #fff; */
  color: black;
  text-decoration: none;
  margin: 0 20px;
  font-size: 16px;
}

.profile img {
  height: 40px;
  border-radius: 50%;
  padding-right: 1vw;
}

.notificationBell img {
  height: 35px;
  margin-right: 20px;
}

.content {
  width: 900px;
  /* height: 70vh; */
  margin: 60px auto;
  padding: 40px;
  border-radius: 8px;
}

.title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.description {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
}

.sub-description {
  font-size: 15px;
  color: #b3b3b3;
  margin-bottom: 20px;
  font-style: italic;
}

.btn {
  padding: 10px 20px;
  border-radius: 15px;
  /* border: 1px solid rgb(41, 45, 46); */
  cursor: pointer;
  font-size: 16px;
  transition: opacity 0.3s ease;
  /* background-color: rgb(1, 5, 9); */
  /* background-color: whitesmoke; */
  background-color: #faf8ff;
  /* color: #fff; */
  color: black;
  transition: scale 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn2 {
  padding: 10px 20px;
  border-radius: 15px;
  /* border: 1px solid rgb(41, 45, 46); */
  cursor: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
  /* background-color: rgb(1, 5, 9); */
  /* background-color: whitesmoke; */
  background-color: #faf8ff;
  /* color: #fff; */
  color: black;
  /* transition: scale 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease; */
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.green-btn {
  /* background-color: #1db954; */
  /* background-color: #36013f; */
  /* background-color: #872073; */
  background-color: #673ab7;
  color: #ffffff;
  background: linear-gradient(to top, #673ab7 0%, #651c71 100%);
}

.lightgreen-btn {
  /* background-color: #60c489; */
  color: #000000;
  /* background-color: #651c71; */
  background: linear-gradient(to top, #673ab7 0%, #651c71 100%);
  color: #ffffff;
}

.red-btn {
  color: #ff0000;
  /* color: black; */
  /* border: 1px solid #ff0000; */
}

.disabled-btn {
  /* background-color: #646464; Light gray background */
  color: #646464; /* Dark gray text */
  cursor: not-allowed !important; /* Change cursor to indicate disabled state */
  opacity: 0.8 !important; /* Reduce opacity to signify disabled state */
}

.disabled-btn:hover {
  opacity: 1; /* Prevent hover effect */
  scale: 1.0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logout-btn{
  /* background-color: #1db954; */
  /* background-color: #673ab7; */
  background: linear-gradient(to top, #673ab7 0%, #651c71 100%);
  /* color: #000000; */
  color: #ffffff;
}

.remove-rule-btn, .remove-btn, .remove-description-btn, .remove-service-btn{
  color: #ff0000;
}

.btn:hover {
  opacity: 0.8;
  scale: 1.1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
  gap: 15px;
}

.input-field,
.textarea-field {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  /* border: 1px solid rgb(41, 45, 46); */
    border: 1px solid rgb(159, 159, 159);
  border-radius: 10px;
  /* background-color: rgb(1, 5, 9); */
  background-color: #faf8ff;
  /* color: #fff; */
  color: black;
}
.input-field{
  overflow: hidden;            /* Ensure text doesn't overflow out of the box */
  text-overflow: ellipsis;     /* Show "..." when text overflows */
  white-space: nowrap;       /* Prevent text from wrapping */
}

.input-label {
  display: block;
  margin-bottom: 8px;
}

.textarea-field {
  height: 100px;
}

.upload-message {
  position: absolute;
  top: 8vh; /* 8% of viewport height from the top */
  left: 50%; /* Start at the center horizontally */
  transform: translateX(-50%); /* Center it by adjusting 50% of its own width */
  background-color: #673ab7;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  z-index: 1000; /* Ensure it's above other content */
  white-space: nowrap; /* Prevent text from wrapping */
  text-align: center;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for fade and scale */
}

.upload-message.show {
 opacity: 1; /*  Make it visible */
 transform: translateX(-50%) scale(1);/*  Scale back to normal size */
}

.forgot-password {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #b3b3b3;
  text-decoration: none;
}

.forgot-password:hover {
  color: #fff;
}

.disabledd {
  opacity: 0.5; /* Reduces opacity to signify disabled state */
  pointer-events: none; /* Prevents interaction */
}
.loginbutton{
  text-align: center;
}

.button-image {
  max-width: 100%;
   max-height: 50%; /* Adjust as needed */
  margin-bottom: 10px; /* Space between image and text */
}
/* PATHCHOICE.HTML ============================================================================================================================================ */

.choice-buttons {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: left;
  gap: 40px;
}

.choice-buttons .btn, .choice-buttons .btn2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* color: #ffffff; */
  /* border: 3px solid #1db954; */
  border: 3px solid #651c71;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  font-size: 18px;
  /* cursor: pointer; */
  transition: transform 0.2s ease, box-shadow 0.2s ease, scale 0.2s ease;
}

.choice-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  scale: 1.1;
  /* border: 3px solid #60c489; */
}

.choice-buttons #disabled {
  box-shadow: none !important;
  transform: none !important;
}

.hidden-explanation {
  display: none;
  position: fixed;
  top: 75%;
  left: 25%;
  /* background-color: rgb(1, 5, 9); */
  background-color: #faf8ff;
  color: black;
  width: 50%;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 15px;
  text-align: justify;
  /* border: 1px solid rgb(41, 45, 46); */
  border: 1px solid #651c71;
  z-index: 1005;
}

.hidden-explanation2 {
  display: none;
  position: fixed;
  top: 60%;
  left: 25%;
  /* background-color: rgb(1, 5, 9); */
  background-color: #faf8ff;
  color: black;
  width: 50%;
  padding: 20px;
  border-radius: 8px;
  font-size: 15px;
  text-align: left;
  /* border: 1px solid rgb(41, 45, 46); */
  border: 1px solid #651c71;
}

/* productsAndServices.html ========================================================================================= */

.service-item,
.urgency-container {
  /* padding: 20px; */
  /* border-radius: 8px; */
  /* margin-top: 20px; */
  /* border: 1px solid rgb(41, 45, 46); */
}

.service-item{
  height: 500px;
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
  /* color: #ffffff; */
  /* border: 3px solid #1db954; */
  border: 3px solid #651c71;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  /* text-align: center; */
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, scale 0.2s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  scale: 1.05;
  /* border: 3px solid #60c489; */
}

#service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  grid-auto-rows: 500px;
}

#add-service-btn {
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* color: #ffffff; */
  /* border: 3px solid #1db954; */
  border: 3px solid #651c71;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  /* text-align: center; */
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, scale 0.2s ease;
}

#add-service-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  scale: 1.05;
  /* border: 3px solid #60c489; */
}

#add-service-btn img {
  max-width: 40%;
  max-height: 50%; /* Adjust as needed */
  margin-bottom: 10px; /* Space between image and text */
}


/* urgentmessages.html =========================================================================================== */
.slider-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr; /* Ensures all rows are of equal height */
  margin-bottom: 30px;

}

.slider-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.button-image3 {
  /* max-width: 100%; */
  max-height: 20px; /* Adjust as needed */
  /* padding: 0 10px 0 10px; */
}

#uploadBtn {
  padding: 5px 30px;
}

/* calendarAndCustomMsg.html ========================================================================================= */
.inline-container {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.inline-container p {
  margin-bottom: 0px;
  margin-top: 0px;
}

#scheduleDays {
  margin-bottom: 15px;
  margin-top: 10px;
}

.calendar-preference .choice-buttons {
  margin-top: 1%;
}

.button-image2 {
  max-width: 100%;
   max-height: 100px; /* Adjust as needed */
  margin-bottom: 20px; /* Space between image and text */
}

.choice-buttons2 {
  margin-top: 100px;
  display: flex;
  flex-direction: row;;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

.choice-buttons2 .btn {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* color: #ffffff; */
  /* border: 3px solid #1db954; */
  border: 3px solid #651c71;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, scale 0.2s ease;
}

.choice-buttons2 .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  scale: 1.1;
  /* border: 3px solid #60c489; */
}

/* bookingSettings.html ======================================================================================== */

/* Style for switches */
.switch {
  position: relative;
  display: inline-block;
  min-width: 40px;
  min-height: 21px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(112, 112, 112);
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}

input:checked + .slider {
  /* background-color: #4caf50; */
  /* background-color: #651c71; */
  background-color: #673ab7;
}

input:checked + .slider:before {
  transform: translateX(18px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* salesSettings.html ======================================================================================== */
.aggressivenessSlider, .detailSlider {
  display: flex;
  flex-direction: column;
  align-items:flex-start
}

.aggressivenessSlider datalist, .detailSlider datalist {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 75%;
}
.range {
  appearance: none;
  width: 75%;
  height: 20px;
  /* background: linear-gradient(to right, green 0%, red 100%); */
  background: linear-gradient(to right, rgb(35, 227, 77) 0%, #651c71 100%);
  outline: none;
  -webkit-appearance: none;
  border-radius: 15px;
}

.range::-webkit-slider-thumb {
  appearance: none;
  width: 25px;
  height: 25px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  border: 2px solid #000;
  cursor: pointer;
  -webkit-appearance: none;
}

.range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  border: 2px solid #000;
  cursor: pointer;
}

.range::-ms-thumb {
  width: 10px;
  height: 20px;
  background: white;
  border-radius: 50%;
  border: 2px solid #000;
  cursor: pointer;
}

.custom-sales-rules, .custom-booking-rule, .notification-container, .custom-descriptions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.custom-sales-rules label, .custom-booking-rule label, .notification-container label, .custom-descriptions label {
  margin-right: 10px;
}

.custom-sales-rules .input-field, .custom-booking-rule .input-field, .notification-container .input-field, .custom-descriptions .input-field {
  flex: 1;
  margin-right: 10px;
}

.custom-sales-rules *, .custom-booking-rule *, .notification-container *, .custom-descriptions *{
margin-top: 1%;
margin-bottom: 1%;
}

/* depttransfers.html ================================================================================================================================== */

.transferDetails {
  padding: 20px;
  padding-bottom: 0;
  /* border: 1px solid #ccc; */
  border-radius: 5px;
  /* background-color: rgb(71, 71, 71); */
  /* margin-bottom: 20px; */
}

.transferDetails .mainLabel {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 10px;
  display: block;
}

/* pesronalityTraits.html ================================================================================================ */
.traits-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
}

.trait-description {
  width: 90%;
}

/* Custom Checkbox Styling */
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 10px;
  margin-bottom: 15px;

}

.custom-checkbox input[type="checkbox"] {
  display: none; /* Hide default checkbox */
}

.custom-checkbox .checkbox {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid #ddd;
  margin-right: 10px;
  position: relative;
}

.custom-checkbox .checkbox:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox:before {
  /* background-color: #28a745; Green background when checked */
  background-color: #651c71;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox:after {
  content: '✔';
  position: absolute;
  left: 2px;
  top: -3px;
  font-size: 16px;
  color: #fff;
}

/* payment.html ================================================================================== */

.payment-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  font-size: 14px;
}

.payment-icons span {
  margin-right: 10px;
}

.security-data {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #b5b5b5;
  margin-bottom: 20px;
}

.security-icon {
  font-size: 18px;
  margin-right: 10px;
}

.total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.total-amount {
  /* color: #00b14f; */
  color: #673ab7;
  font-size: 24px;
}

.button-group {
  display: flex;
  justify-content: space-between;
}

.promo-btn {
  /* background-color: transparent; */
  /* border: 1px solid #00b14f; */
  /* color: #00b14f; */
  color: #673ab7;
  padding: 0 60px 0 60px;
}

.pay-btn {
  /* background-color: #00b14f; */
  background: linear-gradient(to top, #673ab7 0%, #651c71 100%);
  color: #fff;
  padding: 0 60px 0 60px;
}
.hidden {
  display: none;
}

.promo-modal, .services-modal, #autoConfigModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgb(1, 5, 9); */
  /* border: 1px solid rgb(41, 45, 46); */
  border-radius: 8px;
  padding: 20px;
  z-index: 1000;
  /* box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3); Box shadow for the popup */
  box-shadow: 0 4px 15px rgba(101, 60, 183, 0.3);
  backdrop-filter: blur(10px); /* Background blur */
}

.modal-content {
  text-align: center;
}

.modal-content .btn{
  margin-left: 10px;
  margin-right: 10px;
}

.not-working {
  text-decoration: none;
  color: #b3b3b3;
}

.variable-instructions {
  list-style-type: disc;
  font-size: 14px;
  opacity: 0.8;
  display: grid;
}

/* #workingHoursAndInstructions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
} */

.working-hours-row {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjusts spacing between elements */
}

.working-hours-row label {
  font-size: 16px;
  color: black;
}

.service-row {
  display: flex;
  white-space: nowrap;
  align-items: center;
  gap: 10px; /* Adjusts spacing between elements */
  margin-bottom: 20px;
}

.traits-list .custom-checkbox {
  margin: 1%;
  gap: 0;
}
.trait-description h3 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.custom-descriptions {
  margin-bottom: 20px;
  margin-top: 10px;
}

.voice-icon{
  cursor: pointer;
}

#autoConfigModal {
  width: 70%;
  height: 70%;
  overflow-y: auto;
  justify-content: left;
}

.auto-config-item{
  /* height: 500px; */
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
  /* color: #ffffff; */
  /* border: 3px solid #1db954; */
  border: 3px solid #651c71;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  /* text-align: center; */
  /* font-size: 18px; */
  /* cursor: pointer; */
  transition: box-shadow 0.2s ease;
}

.auto-config-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  /* border: 3px solid #60c489; */
}

#config{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  margin-top: 50px;
  grid-auto-rows: 500px;
}


.progress-bar-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-bar {
  max-width: 70%;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #6a1b9a;
  z-index: 1;
  transition: width 0.3s ease;
}

.progress-step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  color: #6a1b9a;
  /* border: 1px solid #cfcfcf; */
  padding: 5px 5px;
  background: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: flex 0.3s ease, background-color 0.3s ease;
}

.progress-step.completed {
  font-weight: bold;
  color: #fff;
}

.progress-step:hover {
  flex: 3; /* Expands the hovered step */
  background-color: #6a1b9a;
  color: #fff;
  text-overflow: clip; /* Show full text on hover */
}
