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

body {
  font-family: "Albert Sans", sans-serif;
  background-color: rgba(240, 240, 240, 1);
}

a {
  text-decoration: none !important;
}

#solTableWrap {
  background: #fff;
  padding: 20px;
}

.dashboard {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-body {
  display: flex;
  gap: 20px;
  padding: 0 24px;
}

.dashboard-header {
  position: sticky;
  z-index: 2;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background-color: rgba(255, 255, 255, 1);

}

.dashboard-header .sidebar-toggle {
  display: none;
}



.dashboard-header .logo {
  width: 81px;
  height: 44px;
  cursor: pointer;
}



.dashboard-header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-header .right {

  display: flex;
  flex-direction: column;
  gap: 10px;
}


.dashboard-header .right .welcome {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.dashboard-header .right .welcome p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(136, 136, 136, 1);
}

.dashboard-header .right .user {
  position: relative;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;

}

.dashboard-header .right .user .top {
  display: flex;
  align-items: center;
  gap: 24px;
}


.dashboard-header .right .user-image {
  width: 44px;
  height: 44px;
  background-color: rgba(251, 219, 183, 1);
  border-radius: 50%;
  overflow: hidden;
}

.dashboard-header .right .user-name p {
  font-size: 14px;
  font-weight: 700;
  color: rgba(64, 64, 64, 1);
}

.dashboard-header .right .user-name span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(86, 86, 86, 1);
}

.dashboard-header .right .user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-header .right .user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}



.dashboard-header .right .circle-arrow {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.2px solid rgba(92, 92, 92, 1);
  border-radius: 50%;
}

.dashboard-header .right .circle-arrow svg.active {
  transform: rotate(180deg);
}

.dashboard-header .right .bottom {
  width: 100%;
  border-radius: 4px;
  display: none;
  width: 100%;
  cursor: pointer;
  position: absolute;
  top: calc(100% + 20px);
  border: 1px solid rgba(243, 243, 243, 1);

}


.dashboard-header .right .bottom.active {
  display: flex;
  flex-direction: column;
}

.dashboard-header .right .bottom-option {
  padding: 14px 15px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
}

.dashboard-header .right .bottom-option.profil {
  border-bottom: 0.5px solid rgba(218, 218, 218, 1);
  position: relative;
}

.dashboard-header .right .bottom-option.profil a {
  position: absolute;
  inset: 0;
}

.dashboard-header .right .bottom-option.profil p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(32, 34, 36, 1);
}

.dashboard-header .right .bottom-option.log-out {
  outline: none;
  border: none;
  width: 100%;

}

.dashboard-header .right .bottom-option.log-out span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(32, 34, 36, 1);
}






.dashboard-body .sidebar {
  min-width: 256px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;

}

.dashboard-body .sidebar .sidebar-menu {
  width: 100%;
  background-color: rgba(0, 103, 113, 1);
  padding: 24px 16px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-menu .side-item {
  display: flex;
  gap: 12px;
  padding: 8px 16px;
  align-items: center;
  transition: all 0.5s ease;
  border-radius: 4px;
  position: relative;
}

.sidebar-menu .side-item.active {
  background-color: rgba(255, 255, 255, 1);
}

.sidebar-menu .side-item.active svg path {
  stroke: rgba(57, 57, 57, 1);
}

.sidebar-menu .side-item.active p {
  color: rgba(57, 57, 57, 1);

}

.sidebar-menu .side-item:hover {
  background-color: rgba(255, 255, 255, 1);
}

.sidebar-menu .side-item:hover svg path {
  stroke: rgba(57, 57, 57, 1);
}



.sidebar-menu .side-item:hover p {
  color: rgba(57, 57, 57, 1);
}

.sidebar-menu .side-item p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.sidebar-menu .side-item a {
  position: absolute;
  inset: 0;
}


.accordion-item-head.active {
  background-color: rgba(255, 255, 255, 1);
}


.accordion-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}



.accordion-item-head .left {
  display: flex;
  gap: 12px;
  align-items: center;
}



.accordion-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  align-items: center;
  border-radius: 4px;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: 8px 16px;
  position: relative;
}

.accordion-item-head a {
  position: absolute;
  inset: 0;
}

.accordion-item-head p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.accordion-item-head.active p {
  color: rgba(57, 57, 57, 1);

}

.accordion-item-head:hover p {
  color: rgba(57, 57, 57, 1);
}

.accordion-item-head.active svg path {
  stroke: rgba(57, 57, 57, 1);
}

.accordion-item-head:hover svg path {
  stroke: rgba(57, 57, 57, 1);
}

.accordion-item-head:hover {
  background-color: rgba(255, 255, 255, 1);
}

.accordion-item .submenu .submenu-item {
  display: flex;
  gap: 8px;
  padding: 10px 45px;
  transition: all 0.5s ease;
  border-radius: 4px;
  cursor: pointer;
}

.accordion-item .submenu .submenu-item p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.accordion-item .submenu .submenu-item:hover {
  background-color: rgba(255, 255, 255, 1);
}

.accordion-item .submenu .submenu-item:hover p {
  color: rgba(57, 57, 57, 1);
}

.accordion-item .submenu .submenu-item:hover svg path {
  stroke: rgba(57, 57, 57, 1);
}

.accordion-item .submenu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 100px;
  overflow: hidden;
  transition: 0.5s ease;
}

.accordion-item .submenu.active {
  max-height: 0;
}

.accordion-item .accordion-item-head .arrow svg.active {
  transform: rotate(180deg);
}

.accordion-item .accordion-item-head .arrow svg {
  transition: 0.5s ease;
}


.sidebar-menu .log-out {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.5s ease;
  cursor: pointer;
}

.sidebar-menu .log-out:hover {
  background-color: rgba(255, 255, 255, 1);
}

.sidebar-menu .log-out:hover p {
  color: rgba(57, 57, 57, 1);
}

.sidebar-menu .log-out:hover svg path {
  stroke: rgba(57, 57, 57, 1);
}



.sidebar-menu .log-out p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.sidebar .add-order p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 103, 113, 1);
}

.sidebar .add-order {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border: dashed 1px rgba(0, 103, 113, 0.4);
  border-radius: 4px;
  background-color: rgba(0, 103, 113, 0.1);
  cursor: pointer;
  position: relative;
}

.sidebar .add-order a {
  position: absolute;
  inset: 0;
}











/* login */
.login-section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 100px;
}

.login-section .login-container {
  max-width: 1200px;
  width: 100%;
}

.image-container {
  width: 625px;
}

.login-section .login-container .image-div {
  width: 100%;
  height: 829px;
}

.login-container .image-div-mobile {
  display: none;
}

.login-section .login-container .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.login-section .login-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 58px;
}



.form-container {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form-container .input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.form-container .tittle {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-container .tittle h1 {
  font-size: 44px;
  font-weight: 500;
  color: rgba(29, 4, 4, 1);
}

.form-container .tittle p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(91, 91, 91, 1);
}

.form-container .input-container .input-div {
  width: 100%;
}

.input-container .input-div.password {
  position: relative;
}

.input-container .input-div.password .eye-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  cursor: pointer;
}

.eye-toggle .eye {
  display: none;
}

.eye-toggle .eye-hide {
  display: block;
}

.eye-toggle.active .eye-show {
  display: block;
}

.eye-toggle.active .eye-hide {
  display: none;
}


.form-container .input-container .input-div input {
  width: 100%;
  border: 1px solid rgba(240, 240, 240, 1);
  outline: none;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 1);
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 500;
  color: rgb(7, 6, 6);
}


.form-container .input-container .input-div input {
  position: relative;
}


.form-container .input-container .input-div input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(153, 153, 153, 1);
}

.form-container .form-options {
  width: 100%;
  display: flex;
  justify-content: space-between;
}


.form-options .forgot a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 103, 113, 1);
  text-decoration: none;
}





.form-container .remember {
  display: flex;
  align-items: center;
  gap: 8px;
}


.form-container .custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  user-select: none;
  color: rgba(130, 130, 130, 1);
  font-size: 16px;
  font-weight: 500;
}

.form-container .custom-checkbox input {
  display: none;
}

.form-container .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 103, 113, 1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 0.2s;
}

.form-container .checkmark svg {
  display: none;
  width: 13px;
  height: 12px;
}

.form-container .custom-checkbox input:checked+.checkmark svg {
  display: block;
}

.form-container .custom-checkbox:hover .checkmark {
  background-color: #f9f9f9;
}



.form-container button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: rgba(0, 103, 113, 1);
  border: none;
  outline: none;
  padding: 15px 0;
  cursor: pointer;
  border-radius: 8px;
}


.form-container button p {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
}

/* Login */








/* Dashboard-Home */
.right-content {
  width: 100%;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  background-color: rgba(255, 255, 255, 1);
}

.overview-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background-color: rgba(255, 255, 255, 1);

}

.overview-container .overview-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: 4px;
  padding: 24px 16px;
  height: 150px;
  justify-content: space-between;

}

.overview-container .overview-box.orders {
  background-color: rgba(12, 74, 110, 1);
}

.overview-container .overview-box.invoices {
  background-color: rgba(239, 68, 68, 1);
}

.overview-container .overview-box.reports {
  background-color: rgba(60, 130, 246, 1);
}

.overview-container .overview-box.calendar {
  background-color: rgba(100, 117, 139, 1);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.overview-container .overview-box.closed-orders {
  background-color: rgba(21, 184, 166, 1);
}

.overview-container .overview-box.open-orders {
  background-color: rgba(235, 179, 5, 1);
}

.overview-container .overview-box h1 {
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
}

.overview-container .overview-box .top p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.overview-container .overview-box .top {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.overview-box .more-info p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  font-style: italic;
}

.overview-box .more-info {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  width: max-content;
  cursor: pointer;
}

.overview-box .more-info a {
  position: absolute;
  inset: 0;
  visibility: hidden;
}

.overview-box .more-info:hover::after {
  width: 100%;
}

.overview-box .more-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: rgba(255, 255, 255, 1);
  transition: 0.5s ease;
}



.charts-section {
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.income-container {
  width: 100%;
  display: flex;
}

.income-container .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.income-container .left .head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.income-container .left .head h1 {
  font-size: 22px;
  font-weight: 500;
  color: rgba(14, 19, 47, 1);
}

.income-container .blue-circle-label {
  display: flex;
  gap: 15px;
  align-items: center;
  cursor: pointer;
}

.income-container .blue-circle-label .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(22, 97, 195, 1);
}

.income-container .blue-circle-label p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(62, 66, 89, 1);
}


.income-container .year-selector {
  display: flex;
  align-items: center;
  width: 90px;
  justify-content: space-between;
}

.income-container .year-selector button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.income-container .year-selector span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(36, 39, 48, 1);
}

.income-container .right {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04);
  max-width: 320px;
  width: 100%;
}

.incomeChart {
  width: 100% !important;
  height: 420px !important;
}

.income-container .right .income-div {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 21px;
}

.income-container .income-image {
  width: 120px;
  height: 120px;
  border-radius: 100px;
  border: 12px solid rgba(238, 241, 252, 1);

}

.income-container .right .income-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.income-container .right .income-text span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.income-container .right .income-text p {
  font-size: 20px;
  font-weight: 500;
  color: rgba(22, 97, 195, 1);
}


.income-container .right .income-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}



.Orderproses-container {
  width: 100%;
  display: flex;
  gap: 50px;
}

.Orderproses-container .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Orderproses-container .left .head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Orderproses-container .order-date-div {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.Orderproses-container .left .head .status-text-container {
  width: 100%;
  display: flex;
  gap: 20px;
}

.Orderproses-container .status-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  font-family: 'Poppins', sans-serif;
}


.Orderproses-container .status-text span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  font-family: 'Poppins', sans-serif;
}




.status-item-container {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-left: 50px;
}

.status-item-container .status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.status-item-container .status-item p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(62, 66, 89, 1);
}

.status-item-container .status-item .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}


.status-item-container .status-item .circle.yellow {
  background-color: rgba(255, 228, 177, 1);
}

.status-item-container .status-item .circle.blue {
  background-color: rgba(192, 206, 255, 1);
}


.status-item-container .status-item .circle.green {
  background-color: rgba(177, 255, 189, 1);
}


.status-item-container .status-item .circle.pink {
  background-color: rgba(255, 204, 205, 1);
}




.Orderproses-container .right .donutChart {
  width: 300px !important;
  height: 290px !important;
  margin-right: 90px;
}

/* Dashboard-Home */









/* Technicians */
.technicians-section {
  width: 100%;
}

.techicians {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.techicians .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.techicians .add-techinician-btn {
  width: max-content;
  padding: 12px 24px;
  border: 1px dashed rgba(0, 103, 113, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background-color: rgba(0, 103, 113, 0.1);
  position: relative;
}

.techicians .add-techinician-btn p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 103, 113, 1);
}

.techicians .add-techinician-btn a {
  position: absolute;
  inset: 0;
}

.techicians .table-and-search {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 16px 16px 50px 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.techicians .table-and-search .search {
  width: 100%;
  position: relative;
}

.techicians .table-and-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.techicians .table-and-search .search input {
  width: 100%;
  padding: 10px 35px;
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;
}

.techicians .table-and-search .search input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.6);
}

.techicians .table-and-search .table-container {
  width: 100%;
}

.techicians .table-and-search .table-container table {
  width: 100%;
  border-collapse: collapse;
}

.techicians table tr {
  text-align: left;
}

.techicians table th {
  background-color: rgba(248, 250, 252, 1);
  color: rgba(33, 33, 33, 0.7);
  font-size: 12px;
  font-weight: 400;
  padding: 15px 25px;
  border-top: 1px solid rgba(230, 230, 230, 1);
}

.techicians table th:last-child {
  text-align: right;
}


.techicians table td {
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  padding: 15px 25px;
  border-bottom: 1px solid rgba(230, 230, 230, 1);
}


.techicians table td:last-child {
  padding: 15px 25px 15px 0;
}




.techicians .image-box {
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.techicians .image-div {
  width: 40px;
  height: 40px;
}

.techicians .image-div img {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}

.techicians .image-div img[src]:not([src=""]) {
  display: block;
}

.techicians .no-photo {

  width: 100px;
  position: absolute;
  left: 0;
  text-align: left;
}

.techicians .no-photo P {
  color: rgba(33, 33, 33, 1);
  font-size: 12px;
  font-weight: 400;
}

.techicians .image-box:has(.image-div img[src]:not([src=""])) .no-photo {
  display: none;
}

.techicians .image-div img[src]:not([src=""]) {
  display: block;
}

.techicians .image-div:has(img[src]:not([src=""]))~.no-photo {
  display: none;
}














.techicians .action-div {
  width: 100%;
  position: relative;

}

.techicians .action-div .view-and-delete {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 4px;
  border: 0.5px solid rgba(218, 218, 218, 1);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 16.8px 0 rgba(103, 102, 102, 0.05);
  top: 100%;
  display: none;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 1;
  width: 150px;

}

.techicians .action-div .view-and-delete.active {
  display: flex;
  flex-direction: column;
}

.techicians .action-div .action {
  padding-left: 10px;
  display: flex;
  justify-content: flex-end;
}

.techicians .action-div .action svg {
  cursor: pointer;
}

.techicians .action-div .view-and-delete .icon-text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

.techicians .action-div .view-and-delete .icon-text.delete {
  border-top: 1px solid rgba(218, 218, 218, 1);
}


.techicians .action-div .view-and-delete .icon-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(32, 34, 36, 1);
}


/* Technicians */























/* Add-technician */


.add-technician-section {
  width: 100%;
}

.add-technician {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.add-technician .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.add-technician .form-section {
  width: 100%;
  padding: 32px 16px 24px 16px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 1);
}

.add-technician .form-section .form-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;

}


.add-technician .form-items-list .form-item label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.add-technician .form-items-list .form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.add-technician .form-items-list {
  display: flex;
  gap: 16px;
}

.add-technician .form-items-list .form-item input, select {
  width: 100%;
  padding: 13px 16px;
  border: none;
  outline: none;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  border-radius: 4px;
}

.add-technician .dateInput::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.add-technician .dateInput::-moz-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}



.add-technician .form-items-list .form-item .input-and-logo {
  position: relative;
}

.add-technician .form-items-list .form-item .input-and-logo .logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  pointer-events: none;
}

.add-technician .form-items-list .form-item.Notes textarea {
  padding: 12px 16px;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  border-radius: 4px;
}






.add-technician .upload-section {
  width: 100%;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.upload-section .head label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}


.add-technician .upload-section .bottom {
  display: flex;
  justify-content: center;
  border: 1px dashed rgba(217, 217, 217, 1);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 20px 90px;
  cursor: pointer;
  width: 100%;
}


.add-technician .upload-section .container {
  width: 100%;
  max-width: 700px;
}


.add-technician .upload-section .upload-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  gap: 5px;
  text-align: center;
}


.add-technician .upload-section .image-div {
  height: 350px;
  width: 100%;
  cursor: pointer;
  display: none;

}


.add-technician .upload-section .upload-box .upload-text p {
  font-size: 16px;
  color: rgba(145, 145, 145, 1);
  font-weight: 400;
}


.add-technician .upload-section .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}



.add-technician .upload-section #file-input {
  display: none;
}



.add-technician .form-container .add-btn {
  width: 72px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(0, 103, 113, 1);
  padding: 12px 0px;
  border: none;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
}


.add-technician .form-container .add-btn p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

/* Add-technician */

















/* Add-brands */

.brands-section {
  width: 100%;
}

.brands {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brands .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.brands .add-brands-btn {
  width: max-content;
  padding: 12px 24px;
  border: 1px dashed rgba(0, 103, 113, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background-color: rgba(0, 103, 113, 0.1);
  cursor: pointer;
}

.brands .add-brands-btn p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 103, 113, 1);
}



.brands .table-and-search {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 16px 16px 60px 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.brands .table-and-search .search {
  width: 100%;
  position: relative;
}

.brands .table-and-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.brands .table-and-search .search input {
  width: 100%;
  padding: 10px 35px;
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;
}

.brands .table-and-search .search input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.6);
}

.brands .table-and-search .table-container {
  width: 100%;
}

.brands .table-and-search .table-container table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;

}

.brands .table-and-search .table-container table th {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.7);
  background-color: rgba(248, 250, 252, 1);
  padding: 15px 10px;
  border-top: 1px solid rgba(230, 230, 230, 1);

}

.brands .table-and-search .table-container table th:last-child {
  width: 180px;
  text-align: center;
}

.brands .table-and-search .table-container table td {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  border-bottom: 1px solid rgba(230, 230, 230, 1);
  padding: 15px 10px;
}

.brands .table-and-search .table-container table td:last-child {
  width: 180px;
}

.brands .table-and-search .table-container table td .buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}



.brands .table-and-search .table-container table td .buttons button {
  padding: 8px;
  border-radius: 2px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  outline: none;
  cursor: pointer;
}

.brands .table-and-search .table-container table td .buttons button p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}

.brands .table-and-search .table-container table td .buttons .del-btn {
  background-color: rgba(215, 22, 22, 1);
}

.brands .table-and-search .table-container table td .buttons .edit-btn {
  background-color: rgba(212, 99, 0, 1);
}






.brands-popup {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
  background-color: rgba(33, 33, 33, 0.1);
  display: none;
  z-index: 222;
}

.brands-popup.active {
  display: flex;
  flex-direction: column;
}


.brands-popup .brands-container {
  width: 450px;
  background-color: rgba(255, 255, 255, 1);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 8px -4px rgba(16, 24, 40, 0.04),
    0 20px 24px -4px rgba(16, 24, 40, 0.1);
}

.brands-popup .brands-container .brands-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.brands-form .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 14px;
}

.brands-form .head .close {
  cursor: pointer;
}

.brands-form .head p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}


.brands-form .form-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.brands-form .form-item label {
  font-size: 18px;
  font-weight: 600;
  color: rgba(97, 97, 97, 1);
}


.brands-form .form-item input {
  width: 100%;
  outline: none;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}

.brands-form button {
  width: 100%;
  outline: none;
  border: none;
  background-color: rgba(31, 89, 233, 1);
  border-radius: 4px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}

/* Ad-brands */





/* New-order */
.add-new-order {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.add-new-order form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.add-new-order .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.customer-info-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(255, 255, 255, 1);
  padding: 32px 16px 24px 16px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.customer-info-section .head p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}

.customer-info-section .head {
  width: 100%;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 15px;
}

.customer-info-section .customer-info-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.customer-info-container .info-box {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
}

.customer-info-container .info-box input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  outline: none;
}

.customer-info-container .info-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}


.order-info-section {
  width: 100%;
  padding: 32px 16px 24px 16px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.order-info-section .head-info {
  width: 100%;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 15px;
}

.order-info-section .head-info p {
  font-size: 500;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}


.order-info-container {
  display: flex;
  gap: 16px;
  width: 100%;
}

.order-info-container .info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-box .timeinput-box {
  position: relative;
}

.info-box .timeinput-box .svg-calendar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.order-info-container .info-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.order-info-container .info-box input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgba(255, 255, 255, 1);
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.problem label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.problem textarea {
  outline: none;
  resize: none;
  width: 100%;
  height: 60px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgba(255, 255, 255, 1);
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  overflow: hidden;
}

.problem {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.order-info-section .add-btn {
  width: max-content;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 103, 113, 1);
  border-radius: 4px;
  border: none;
  outline: none;
  cursor: pointer;
}

.order-info-section .add-btn span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.add-new-order .dropdown {
  width: 100%;
  position: relative;
}


.add-new-order .dropdown .head {
  position: relative;
}

.add-new-order .dropdown svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  width: 22px;
  height: 22px;
}

.add-new-order .dropdown svg.active {
  transform: rotate(180deg) translateY(50%);
}

.add-new-order .dropdown-selected {
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.add-new-order .dropdown-selected p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}



.add-new-order .dropdown-options {
  position: absolute;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  display: none;
  z-index: 1;
}

.add-new-order .dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.add-new-order .dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
}

.add-new-order .dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}

.add-new-order .dropdown-options .option:hover {
  background-color: #dddcdc;
}

/* New-order */
















/* order-details */
.order-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-details .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.order-details .tittle p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(122, 122, 122, 1);
}

.epxort-invoince {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.epxort-invoince .export-btn {
  width: max-content;
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
}

.epxort-invoince .export-btn span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(123, 118, 118, 1);
}

.info-section {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-section .info-tittle p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}

.info-section .info-tittle {
  width: 100%;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
}

.info-section .info-container .info-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.info-section .info-container .info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-section .info-container .info-box input {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 13px 16px;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.info-section .info-container .info-box .date-input::-webkit-calendar-picker-indicator {
  display: none;
}

.info-section .info-container {
  display: flex;
  gap: 16px;
}

.Notes-Attachments {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Notes-Attachments .tittle {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
}

.Notes-Attachments .tittle p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}


.Notes-Attachments .note-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.Notes-Attachments .note-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.Notes-Attachments .note-box textarea {
  width: 100%;
  outline: none;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.Notes-Attachments .bottom .container {
  gap: 10px;
  display: flex;
  flex-direction: column;
}


.order-details .dropdown {
  width: 100%;
  position: relative;
}


.order-details .dropdown .head {
  position: relative;
}

.order-details .dropdown svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  width: 22px;
  height: 22px;
}

.order-details .dropdown svg.active {
  transform: rotate(180deg) translateY(50%);
}

.order-details .dropdown-selected {
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.order-details .dropdown-selected p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}



.order-details .dropdown-options {
  position: absolute;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  display: none;
  z-index: 1;
}

.order-details .dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.order-details .dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
}

.order-details .dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}

.order-details .dropdown-options .option:hover {
  background-color: #dddcdc;
}


.order-details .upload-section {
  width: 100%;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.upload-section .head label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.order-details .upload-section .bottom {
  display: flex;
  justify-content: center;
  border: 1px dashed rgba(217, 217, 217, 1);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 20px 90px;
  cursor: pointer;
  width: 100%;
}

.order-details .upload-section .container {
  width: 100%;
  max-width: 700px;
}

.order-details .upload-section .upload-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  gap: 5px;
  text-align: center;
}

.upload-section .image-div {
  height: 350px;
  width: 100%;
  cursor: pointer;
  display: none;

}




.order-details .upload-section .upload-box .upload-text p {
  font-size: 16px;
  color: rgba(145, 145, 145, 1);
  font-weight: 400;
  text-wrap: nowrap;
}

.order-details .upload-section .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.order-details .upload-section #file-input {
  display: none;
}

/* Order-details */

















/* Order-report */
.order-report-section {
  width: 100%;
}

.order-report {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-report .head {
  display: flex;
  justify-content: space-between;
  width: 100%;

}

.order-report head h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.order-report .button-container {
  display: flex;
  gap: 16px;
}

.order-report .button-container .btn {
  width: max-content;
  display: flex;
  gap: 6px;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
}

.order-report .button-container .btn p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.order-report .button-container .btn.red {
  background-color: rgba(233, 45, 45, 1);
}

.order-report .button-container .btn.purple {
  background-color: rgba(101, 20, 231, 1);
  border: none;
  outline: none;
}

.report-section {
  padding: 32px 16px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
}


.report-section .tittle p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}

.report-section .tittle {
  width: 100%;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
}

.report-info-container .report-info label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.report-info-container .report-info input {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  padding: 12px 16px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 1);
  outline: none;
}

.report-info-container .report-info .price::-webkit-inner-spin-button,
.report-info-container .report-info .price::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}



.report-info-container .report-info.description {
  grid-column: 1 / -1;
}

.report-info-container .report-info.description input {
  padding: 12px 16px 26px 16px;
}

.report-info-container .report-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-info-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


.receipts-section {
  padding: 32px 16px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
}

/* .order-report .upload-section {
  width: 100%;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.order-report .upload-section .head label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.order-report .upload-section .head {
  padding-bottom: 10px;
}

.order-details .upload-section .bottom {
  display: flex;
  justify-content: center;
  border: 1px dashed rgba(217, 217, 217, 1);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 20px 90px;
  cursor: pointer;
  width: 100%;
}

.order-report .upload-section .container {
  width: 100%;
  max-width: 700px;
}

.order-report .upload-section .upload-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  gap: 5px;
  text-align: center;
}

.order-report .upload-section .image-div {
  height: auto;
  width: 100px;
  cursor: pointer;
  display: block;


}

.order-report .upload-section .upload-box .upload-text p {
  font-size: 16px;
  color: rgba(145, 145, 145, 1);
  font-weight: 400;
}

.order-report .upload-section .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.order-report .upload-section #file-input {
  display: none;
} */



.payment-section {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 32px 16px 24px 16px;
}

.order-report .payment-section .tittle p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}

.order-report .payment-section .tittle {
  width: 100%;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
}

.payments-information-container .payment-info label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.payments-information-container .payment-info input {
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgba(255, 255, 255, 1);
  outline: none;
}

.payments-information-container .payment-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payments-information-container {
  display: flex;
  gap: 16px;
}

.status-section {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.status-section .tittle {
  width: 100%;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
}

.status-section .tittle p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}

.status-section .paid {
  width: 100%;
}

.status-section .paid input {
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgba(255, 255, 255, 1);
  outline: none;
}



.popup-payment {
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(20px);
  background-color: rgba(33, 33, 33, 0.1);
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 222222222;
}

.popup-payment.active {
  display: flex;
  flex-direction: column;
}

.payment-container {
  max-width: 400px;
  width: 100%;
}

.popup-payment .payment-container .payment-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 8px -4px rgba(16, 24, 40, 0.04),
    0 20px 24px -4px rgba(16, 24, 40, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
}

.popup-payment .payment-container .select-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
}

.popup-payment .payment-container .select-option .close-svg {
  cursor: pointer;
}

.payment-container .select-option p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.payment-container .main-option .tittle p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(97, 97, 97, 1);
}

.pay-option-container .pay-option p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1)
}

.pay-option-container .pay-option span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(134, 134, 134, 1);
}

.pay-option-container .pay-option {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 16px;
  cursor: pointer;
}

.pay-option-container .pay-option.active {
  border: 1px solid rgba(31, 89, 233, 1);
}


.pay-option-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-option {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.full-amount-deposit .deposit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.full-amount-deposit .deposit input {
  width: 18px;
  height: 18px;
  accent-color: rgba(26, 124, 229, 1);
}

.full-amount-deposit .deposit label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}


.full-amount-deposit {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-buttons {
  width: 100%;
  display: flex;
  gap: 16px;
}

.option-buttons .close-btn {
  width: 100%;
  background-color: rgba(210, 8, 8, 1);
  padding: 12px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}


.option-buttons .close-btn p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.option-buttons .pay-btn {
  width: 100%;
  background-color: rgba(31, 89, 233, 1);
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  border: none;
  outline: none;
  cursor: pointer;
}

/* Order-report */

















/* Profile-Admin */

.profile-section {
  width: 100%;
}

.dashboard-body .profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile .form-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);

}

.dashboard-body .profile .profile-tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.dashboard-body .profile .form-items-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.profile .form-container .form-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.profile .form-container .form-item label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.profile .form-container .form-item input {
  width: 100%;
  outline: none;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 13px 16px;
  color: rgba(47, 47, 47, 1);
  font-size: 16px;
  font-weight: 500;
}


.profile .form-container .save-btn {
  background-color: rgba(0, 103, 113, 1);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  width: max-content;
  padding: 15px 25px;
  border: none;
  outline: none;
  cursor: pointer;
}

/* Profile-Admin */




















/* Services */

.services-section {
  width: 100%;
}

.services {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.services .add-services-btn {
  width: max-content;
  padding: 12px 24px;
  border: 1px dashed rgba(0, 103, 113, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background-color: rgba(0, 103, 113, 0.1);
  cursor: pointer;
}

.services .add-services-btn p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 103, 113, 1);
}



.services .table-and-search {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 16px 16px 50px 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.services .table-and-search .search {
  width: 100%;
  position: relative;
}

.services .table-and-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.services .table-and-search .search input {
  width: 100%;
  padding: 10px 35px;
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;
}

.services .table-and-search .search input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.6);
}

.table-and-search .table-container {
  width: 100%;
}

.services .table-and-search .table-container table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.services .table-and-search .table-container table th {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.7);
  background-color: rgba(248, 250, 252, 1);
  padding: 15px 10px;
  border-top: 1px solid rgba(230, 230, 230, 1);
}



.services .table-and-search .table-container table td {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  border-bottom: 1px solid rgba(230, 230, 230, 1);
  padding: 15px 10px;
}


.services .table-and-search .table-container table th:last-child {
  text-align: center;
  width: 200px;
}

.services .table-and-search .table-container table td:last-child {
  width: 200px;
}


.services .table-and-search .table-container table td .buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}



.table-and-search .table-container table td .buttons button {
  padding: 8px;
  border-radius: 2px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  outline: none;
  cursor: pointer;
}

.table-and-search .table-container table td .buttons button p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}

.table-and-search .table-container table td .buttons .del-btn {
  background-color: rgba(215, 22, 22, 1);
}

.table-and-search .table-container table td .buttons .edit-btn {
  background-color: rgba(212, 99, 0, 1);
}



.service-popup {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
  background-color: rgba(33, 33, 33, 0.1);
  display: none;
  z-index: 2;
}

.service-popup.active {
  display: flex;
  flex-direction: column;
}


.service-popup .service-container {
  width: 500px;

  background-color: rgba(255, 255, 255, 1);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 8px -4px rgba(16, 24, 40, 0.04),
    0 20px 24px -4px rgba(16, 24, 40, 0.1);
}

.service-popup .service-container .service-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-form .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 16px;
}

.service-form .head .close {
  cursor: pointer;
}

.service-form .head p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}


.service-form .form-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.service-form .form-item label {
  font-size: 18px;
  font-weight: 600;
  color: rgba(97, 97, 97, 1);
}


.service-form .form-item input {
  width: 100%;
  outline: none;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}


.service-form .form-item.Description textarea {
  padding: 16px 16px 55px 16px;
  width: 100%;
  border: 1px solid rgba(240, 240, 240, 1);
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}


.service-form button {
  width: 100%;
  outline: none;
  border: none;
  background-color: rgba(31, 89, 233, 1);
  border-radius: 4px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}

/* Services */

















/* Spare-parts */
.spare-parts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spare-parts .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.spare-parts .total-container {
  display: flex;
  gap: 16px;
}

.spare-parts .total-container .total {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 20px 16px;
}

.spare-parts .total-container .total span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(104, 104, 104, 1);
  font-style: italic;
}


.spare-parts .total-container .total p {
  font-size: 30px;
  font-weight: 600;
  color: rgba(47, 47, 47, 1);
}





.spare-parts .table-and-search {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.spare-parts .search-and-details {
  display: flex;
  gap: 20px;
}

.spare-parts .search-and-details .details-info {
  display: flex;
  gap: 10px;
}

.spare-parts .details-info .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  cursor: pointer;

}



.spare-parts .table-and-search .search {
  width: 100%;
  position: relative;
}

.spare-parts .table-and-search .search svg {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.spare-parts .table-and-search .search input {
  width: 100%;
  padding: 10px 35px;
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;
  height: 100%;

}

.spare-parts .table-and-search .search input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.6);
}

.spare-parts .dropdown {
  width: 100%;
  position: relative;
  height: 100%;
  z-index: 1;
}


.spare-parts .dropdown .head {
  position: relative;
}

.spare-parts .dropdown .arrow svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  pointer-events: none;
}

.spare-parts .dropdown .arrow svg.active {
  transform: rotate(180deg) translateY(50%);
}

.spare-parts .dropdown-selected {
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.spare-parts .dropdown-selected p {
  font-size: 16px;
  color: rgba(50, 50, 50, 1);
  font-weight: 500;
}



.spare-parts .dropdown-options {
  position: absolute;
  width: 100%;
  border-radius: 4px;
  display: none;
  height: 100%;
}

.spare-parts.dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.spare-parts .dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  background: #fff;
  text-wrap: nowrap;
}

.spare-parts .dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}

.spare-parts .dropdown-options .option:hover {
  background-color: #dddcdc;
}

.details-info .info-box {
  width: 110px;
  cursor: pointer;
}

.spare-parts.table-and-search .search input {
  padding: 10px 35px;
}



.spare-parts .table-and-search .table-container {
  width: 100%;
}

.spare-parts .table-and-search .table-container table {
  width: 100%;
  border-collapse: collapse;
}

.spare-parts .table-and-search .table-container table tr {
  text-align: left;
  border-bottom: 1px solid rgba(230, 230, 230, 1);
}

.spare-parts .table-and-search .table-container table tr .completed {
  background-color: rgba(15, 109, 12, 0.2);
  width: max-content;
  padding: 4px 8px;
  border-radius: 4px;
}

.spare-parts .table-and-search .table-container table tr .completed p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 109, 12, 1);
}

.spare-parts .table-and-search .table-container table th {
  background-color: rgba(248, 250, 252, 1);
  color: rgba(33, 33, 33, 0.7);
  font-size: 12px;
  font-weight: 400;
  padding: 15px 25px;
}

.spare-parts .table-and-search .table-container table th:last-child {
  text-align: right;
}


.spare-parts .table-and-search .table-container table td {
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  padding: 15px 25px;
}

.spare-parts .table-and-search .table-container table td:last-child {
  padding: 15px 25px 15px 0;
}

.spare-parts .action-div {
  position: relative;

}

.spare-parts .action-div .view-and-delete {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 4px;
  border: 0.5px solid rgba(218, 218, 218, 1);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 16.8px 0 rgba(103, 102, 102, 0.05);
  top: 100%;
  display: none;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 1;
  width: 150px;

}

.spare-parts .action-div .view-and-delete.active {
  display: flex;
  flex-direction: column;
}

.spare-parts .action-div .action {
  padding-left: 10px;
  display: flex;
  justify-content: flex-end;
}

.spare-parts .action-div .action svg {
  cursor: pointer;
}

.spare-parts .action-div .view-and-delete .icon-text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

.spare-parts .action-div .view-and-delete .icon-text.delete {
  border-top: 1px solid rgba(218, 218, 218, 1);
}


.spare-parts .action-div .view-and-delete .icon-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(32, 34, 36, 1);
}




/* Spare-parts */




















/* Order-details */
.order-details-section {
  width: 100%;
}

.order-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-details .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.order-details .tittle p {
  font-size: 18px;
  font-weight: 500;
  color: rgba(122, 122, 122, 1);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.epxort-invoince {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.epxort-invoince .export-btn {
  width: max-content;
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
}

.epxort-invoince .export-btn span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(123, 118, 118, 1);
}

.info-section {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-section .info-tittle p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}

.info-section .info-tittle {
  width: 100%;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
}

.info-section .info-container .info-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.info-section .info-container .info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-section .info-container .info-box input {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 13px 16px;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.info-section .info-container {
  display: flex;
  gap: 16px;
}

.Notes-Attachments {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Notes-Attachments .tittle {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
}

.Notes-Attachments .tittle p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}


.Notes-Attachments .note-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.Notes-Attachments .note-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.Notes-Attachments .note-box textarea {
  width: 100%;
  outline: none;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.Notes-Attachments .bottom .container {
  gap: 10px;
  display: flex;
  flex-direction: column;
}





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

.upload-section .head label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.upload-section .bottom {
  display: flex;
  justify-content: center;
  border: 1px dashed rgba(217, 217, 217, 1);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 20px 90px;
  cursor: pointer;
  width: 100%;
}

.upload-section .container {
  width: 100%;
  max-width: 700px;
}

.upload-section .upload-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  gap: 5px;
  text-align: center;
}

.upload-section .image-div {
  height: 350px;
  width: 100%;
  cursor: pointer;
  display: none;

}




.upload-section .upload-box .upload-text p {
  font-size: 16px;
  color: rgba(145, 145, 145, 1);
  font-weight: 400;
}

.upload-section .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.upload-section #file-input {
  display: none;
}

/* Order-details */
















/* Orders */
.Orders {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.Orders .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.Orders .total-container {
  display: flex;
  gap: 16px;
}

.Orders .total-container .total {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 20px 16px;
}

.Orders .total-container .total span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(104, 104, 104, 1);
}


.Orders .total-container .total p {
  font-size: 30px;
  font-weight: 600;
  color: rgba(47, 47, 47, 1);
}





.Orders .table-and-search {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 16px 16px 50px 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.Orders .search-and-details {
  display: flex;
  gap: 20px;
}

.Orders .search-and-details .details-info {
  display: flex;
  gap: 10px;
  width: 100%;
}

.Orders .dropdown {
  width: 100%;
  position: relative;
}


.Orders .dropdown .head {
  position: relative;
}

.Orders .dropdown .arrow svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  cursor: pointer;
}

.Orders .dropdown .arrow svg.active {
  transform: rotate(180deg) translateY(50%);
}

.Orders .dropdown-selected {
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.Orders .dropdown-selected p {
  font-size: 14px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}



.Orders .dropdown-options {
  position: absolute;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  display: none;
  z-index: 1;
}

.Orders .dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.Orders .dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
}

.Orders .dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}

.Orders .dropdown-options .option:hover {
  background-color: #dddcdc;
}




.Orders .table-and-search .search {
  width: 250px;
  position: relative;
}

.Orders .table-and-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.Orders .table-and-search .search input {
  width: 100%;
  padding: 10px 35px;
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;
  height: 100%;
}

.Orders .table-and-search .search input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.6);
}

.Orders .table-and-search .table-container {
  width: 100%;
}

.Orders .table-and-search .table-container table {
  width: 100%;
  border-collapse: collapse;
}

.table-and-search .table-container table tr {
  text-align: left;
}

.table-and-search .table-container table tr .status-info {
  width: max-content;
  padding: 4px 8px;
  border-radius: 4px;
}

.table-and-search .table-container table tr .status {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.table-and-search .table-container table tr .status-info p {
  font-size: 12px;
  font-weight: 500;
}


.table-and-search .table-container table tr .status-info.completed p {
  color: rgba(15, 109, 12, 1);
}

.table-and-search .table-container table tr .status-info.completed {
  background-color: rgba(20, 138, 16, 0.2);
}

.table-and-search .table-container table tr .status-info.property p {
  color: rgba(181, 5, 134, 1);
}

.table-and-search .table-container table tr .status-info.property {
  background-color: rgba(181, 5, 134, 0.2);
}

.table-and-search .table-container table tr .status-info.issue p {
  color: rgba(185, 98, 0, 1);
}

.table-and-search .table-container table tr .status-info.issue {
  background-color: rgba(185, 98, 0, 0.2);
}



.table-and-search .table-container table th {
  background-color: rgba(248, 250, 252, 1);
  color: rgba(33, 33, 33, 0.7);
  font-size: 12px;
  font-weight: 400;
  padding: 15px 0 15px 25px;
  border-top: 1px solid rgba(230, 230, 230, 1);
}



.table-and-search .table-container table td {
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  padding: 15px 0 15px 25px;
  border-bottom: 1px solid rgba(230, 230, 230, 1);

}

.table-and-search .table-container table th:last-child {
  text-align: right;
}




.Orders .action-div {
  position: relative;
}

.Orders .action-div .view-and-delete {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 4px;
  border: 0.5px solid rgba(218, 218, 218, 1);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 16.8px 0 rgba(103, 102, 102, 0.05);
  top: 100%;
  display: none;
  position: absolute;
  width: 100%;
  right: 0;
  z-index: 1;
  width: 150px;

}

.Orders .action-div .view-and-delete.active {
  display: flex;
  flex-direction: column;
}

.Orders .action-div .action {
  padding-left: 10px;
  display: flex;
  justify-content: flex-end;
}

.action-div .action svg {
  cursor: pointer;
}

.Orders .action-div .view-and-delete .icon-text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

.Orders .action-div .view-and-delete .icon-text.delete {
  border-top: 1px solid rgba(218, 218, 218, 1);
}


.Orders .action-div .view-and-delete .icon-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(32, 34, 36, 1);
}









/* Orders */












/* Invoince1 */
.invoince-content-section {
  width: 100%;
}

.invoince-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.invoince-content .tittle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.invoince-content .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.invoince-content .tittle .button-box {
  display: flex;
  gap: 16px;
}

.invoince-content .tittle .button-box .btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
}

.invoince-content .tittle .button-box .pink {
  background-color: rgba(101, 20, 231, 1);
}

.invoince-content .tittle .button-box .btn.blue {
  background-color: rgba(31, 89, 233, 1);
}

.invoince-content .tittle .button-box .btn p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.invoince-content .service-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(255, 255, 255, 1);
  padding: 32px 16px 24px 16px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
}

.invoince-content .service-box .head {
  width: 100%;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 12px 16px;
}

.invoince-content .service-box .head p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.invoince-content .custom-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.invoince-content .custom-box.hidden {
  display: none;

}

.invoince-content .custom-box .input-section .input-container .input-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.invoince-content .custom-box .input-container {
  width: 100%;
  display: flex;
  gap: 16px;
}


.invoince-content .custom-box .input-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.invoince-content .custom-box .input-box input {
  border: 1px solid rgba(240, 240, 240, 1) !important;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  width: 100%;
  border-radius: 4px;
  border: none;
  outline: none;
}

.invoince-content .custom-box .delete-btn {
  width: 100%;
  border: none;
  border-radius: 4px;
  outline: none;
  background-color: rgba(210, 8, 8, 1);
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}

.invoince-content .custom-box-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.invoince-content .custom-box .input-section {
  width: 100%;
  display: flex;
  gap: 16px;
  flex-direction: column;
}


.invoince-content .custom-btn {
  background-color: rgba(0, 103, 113, 1);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  border: none;
  outline: none;
  width: max-content;
  cursor: pointer;
}

.invoince-content .custom-btn span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.invoince-content .total-section {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invoince-content .total-container {
  display: flex;
  gap: 16px;
}

.invoince-content .total-container .total-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.invoince-content .total-container .total-box .balance {
  color: rgba(249, 15, 15, 1);
}

.invoince-content .total-container .total-box input {
  outline: none;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.invoince-content .total-container .total-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.invoince-content .dropdown-and-input {
  position: relative;
}

.invoince-content .total-box .dropdown-and-input .discount-input {
  padding: 12px 16px 12px 70px;
  width: 100%;
}

.invoince-content .dropdown {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
}

.invoince-content .dropdown-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.invoince-content .dropdown-selected p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(47, 47, 47, 1);
}

.invoince-content .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  display: none;
  flex-direction: column;
  z-index: 111;
  cursor: pointer;
  display: none;
}

.invoince-content .dropdown-list.open {
  display: flex;
  flex-direction: column;
}

.invoince-content .dropdown-list .list {
  padding: 8px 20px;
  z-index: 111;
  background-color: rgb(255, 255, 255, 1);
}

.invoince-content .dropdown-list .list p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(47, 47, 47, 1);
}

.invoince-content .dropdown-list .list:hover {
  background: #eee;
}




.invoince-content .enable-deposit {
  display: flex;
  align-items: center;
  gap: 8px;
}


.invoince-content .custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
  user-select: none;
  color: rgba(130, 130, 130, 1);
  font-size: 16px;
  font-weight: 500;
}

.invoince-content .custom-checkbox input {
  display: none;
}

.invoince-content .checkmark {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(47, 47, 47, 1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 0.2s;
}

.invoince-content .checkmark svg {
  display: none;
}

.invoince-content .custom-checkbox input:checked+.checkmark svg {
  display: block;
}

.invoince-content .custom-checkbox:hover .checkmark {
  background-color: #f9f9f9;
}

.invoince-content .work-details {
  width: 100%;
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.invoince-content .work-details label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.invoince-content .work-details textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  outline: none;
  padding: 12px 16px;
}

.invoince-content .payments-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 32px 16px 24px 16px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
}

.invoince-content .payments-section .head p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}

.invoince-content .payments-section .head {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
  width: 100%;
}

.invoince-content .payments-section .no-payment {
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;

}

.invoince-content .payments-section .no-payment p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}



.invoince-content .payments-section .payment-total-container {
  display: flex;
  width: 100%;
  gap: 16px;
}

.payment-total-container .total-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-total-container .total-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.payment-total-container .total-box .red-total {
  color: rgba(249, 15, 15, 1);
}


.payment-total-container .total-box input {
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  width: 100%;
  border-radius: 4px;
  outline: none;
}








.invoince-content .Status-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 32px 16px 24px 16px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
}

.invoince-content .Status-section .head p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(86, 86, 86, 1);
}

.invoince-content .Status-section .head {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
  width: 100%;
}

.invoince-content .Status-section .draft {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;

}

.invoince-content .payments-section .draft p {
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.invoince-content .buttons-div {
  display: flex;
  gap: 12px;

}

.invoince-content .buttons-div button {
  border: none;
  outline: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  padding: 12px;
  cursor: pointer;
}

.invoince-content .buttons-div button.update {
  background-color: rgba(48, 101, 233, 1);
}

.invoince-content .buttons-div button.Checkout {
  background-color: rgba(23, 153, 168, 1);
}

.invoince-content .buttons-div .show-invoice {
  background-color: rgba(106, 106, 106, 1);
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
}

.invoince-content .buttons-div .show-invoice p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}



.update-popup {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
  background-color: rgba(33, 33, 33, 0.1);
  display: none;
  z-index: 222222222222222222222222;
}

.update-popup.active {
  display: flex;
  flex-direction: column;
}

.update-form {
  max-width: 400px;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: 0 8px 8px -4px rgba(16, 24, 40, 0.04),
    0 20px 24px -4px rgba(16, 24, 40, 0.1);
}

.update-form .info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  padding-bottom: 10px;
}

.update-form .info .close-svg {
  cursor: pointer;
}

.update-form .info p {
  font-size: 18px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.update-form .text-div {
  width: 100%;
  border-bottom: 1px solid rgba(240, 240, 240, 1);
  padding-bottom: 10px;
}

.update-form .text-div textarea {
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  width: 100%;
  outline: none;
  padding: 16px;
  height: 116px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}


.update-buttons {
  width: 100%;
  display: flex;
  gap: 16px;
}

.update-buttons .close-btn {
  width: 100%;
  background-color: rgba(210, 8, 8, 1);
  padding: 12px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}


.update-buttons .close-btn p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

.update-buttons .pay-btn {
  width: 100%;
  background-color: rgba(31, 89, 233, 1);
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  border: none;
  outline: none;
  cursor: pointer;
}

/* Invoince1 */













/* Calendar */
.calendar-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tittle-calendar h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.calendar-day-box .calendar-day {
  display: flex;
  background-color: rgba(241, 241, 241, 1);
  border-radius: 4px;
  align-items: center;
  width: 200px;
  padding: 8px 10px;
  justify-content: space-between;
}

.calendar-day-box .calendar-day .prev,
.calendar-day-box .calendar-day .next {
  cursor: pointer;
}

.calendar-container .monthYear {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
}

.calendar-section .today {
  background-color: rgba(241, 241, 241, 1);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
}

.calendar-section .today p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
}

.calendar-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calendar-container .head {
  background-color: rgba(255, 255, 255, 1);
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
}

.calendar-day-box {
  display: flex;
  gap: 10px;
}

.table-container {
  padding: 18px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  box-shadow: 0 0 3.7px 0 rgba(0, 0, 0, 0.1);
}

.calendar-section table {
  width: 100%;
  background-color: rgba(232, 232, 232, 1);
  table-layout: fixed;
}

.calendar-section table th {
  color: rgba(60, 60, 60, 1);
  font-size: 16px;
  font-weight: 400;
  background-color: rgba(255, 255, 255, 1);
  height: 60px;
  text-align: center;
}

.calendar-section table td {
  background-color: rgba(255, 255, 255, 1);
  text-align: right;
  height: 140px;
  cursor: pointer;
}

.calendar-section .td-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 15px 10px 0 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.calendar-section .today-cell {
  background-color: rgba(229, 238, 251, 1);
}

.calendar-section .day-number {
  border-radius: 32px;
  width: 52px;
  height: 52px;
  color: rgba(60, 60, 60, 1);
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-section .completed {
  background-color: rgba(20, 138, 16, 0.2);
  border-radius: 4px;
  font-size: 10px;
  padding: 4px 8px;
  width: max-content;
  height: max-content;
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 109, 12, 1);
  position: absolute;
  bottom: 13%;
  right: 26px;
}

.mobile-calendar-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  display: none;
}

.mobile-calendar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-calendar-container .monthYear {
  font-size: 18px;
  font-weight: 600;
  color: rgba(33, 33, 33, 1);
}

.calendar-section .weeks {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 20px;
}

.calendar-section .week p {
  font-weight: 600;
  font-size: 14px;
  color: rgba(33, 33, 33, 1);
}

.calendar-body-mobile {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 10px;
}

.calendar-body-mobile .current-month {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  text-align: center;
  color: rgba(46, 46, 46, 1);

}

.calendar-body-mobile .other-month {
  color: rgba(0, 23, 84, 0.15);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}


.calendar-body-mobile .today {
  background-color: rgba(76, 175, 80, 1);
  color: rgba(255, 255, 255, 1);
}

.calendar-body-mobile .active {
  background-color: rgba(76, 175, 80, 1);
  color: rgba(255, 255, 255, 1);
}



/* Calendar */























































































































































/* technician-profile */
.myinfo-section {
  width: 100%;
}

.myinfo-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.myinfo-section .tittle-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.myinfo-section .tittle-container .top {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.myinfo-section .tittle-container .bottom {

  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.myinfo-section .tittle-container .bottom .left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.myinfo-section .tittle-container .bottom .left .image-div {
  width: 48px;
  height: 48px;
  background-color: rgba(251, 219, 183, 1);
  border-radius: 50%;
  overflow: hidden;
}

.myinfo-section .tittle-container .bottom .left .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.myinfo-section .tittle-container .bottom .left .name-and-id p {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.myinfo-section .tittle-container .bottom .left .name-and-id span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.tittle-container .bottom .left .name-and-id {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tittle-container .bottom .right {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.myinfo-section .personal-work-section {
  width: 100%;
  padding: 16px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.myinfo-section .personal-work-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.myinfo-section .personal-work-container .personal-box .head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.personal-work-container .personal-box .head h1 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.personal-work-container .personal-box .head .edit-btn {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(240, 240, 240, 1);
  outline: none;
  padding: 12px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 2px;
  cursor: pointer;
}

.personal-work-container .personal-box .head .edit-btn span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(70, 70, 70, 1);
}

.about-info-personal {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 32px 16px 24px 16px;
  background-color: rgba(255, 255, 255, 1);
}

.personal-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-info-personal .image-div {
  min-width: 168px;
  height: 168px;
  background-color: rgba(251, 219, 183, 1);
  border-radius: 50%;
  overflow: hidden;
}

.about-info-personal .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-info-personal .input-div-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.about-info-personal .input-div-container .input-box.Email {
  grid-column: 1/-1;
}

.about-info-personal .input-div-container .input-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;

}

.about-info-personal .input-div-container .input-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.about-info-personal .input-div-container .input-box input {
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  outline: none;
  padding: 13px 16px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  width: 100%;
}

.about-info-personal .input-div-container .input-box input.active {
  border: 1px solid black;
}

.personal-work-container .work-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.personal-work-container .work-box .head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.personal-work-container .work-box .head h1 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.personal-work-container .work-box .head .edit-btn {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(240, 240, 240, 1);
  outline: none;
  padding: 12px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 2px;
  cursor: pointer;
}

.personal-work-container .work-box .head .edit-btn span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(70, 70, 70, 1);
}


.about-info-work .input-box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px;
  padding: 32px 16px 24px 16px;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 1);
}

.about-info-work .input-box-container .input-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-info-work .input-box-container .input-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.about-info-work .input-box-container .input-box input {
  width: 100%;
  outline: none;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  padding: 13px 16px;
}

.about-info-work .input-box-container .input-box input.active {
  border: 1px solid black;
}

.about-info-work .save-btn {
  border: none;
  outline: none;
  background-color: rgba(0, 103, 113, 1);
  width: 72px;
  display: flex;
  justify-content: center;
  padding: 12px 0;
  border-radius: 4px;
  color: rgba(255, 255, 255, 1);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.myinfo-section .about-info-work {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Technician-profile */









/* Map */
.map-section {
  width: 100%;
}

.map-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-container .tittle h1 {
  font-size: 36px;
  font-weight: rgba(46, 46, 46, 1);
  color: rgba(46, 46, 46, 1);
}

.map-container .dropdown-container {
  display: flex;
  width: 100%;
  gap: 16px;
}

.map-section .dropdown {
  width: 100%;
  position: relative;
}


.map-section .dropdown .head {
  position: relative;
}

.map-section .dropdown svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
}

.map-section .dropdown svg.active {
  transform: rotate(180deg) translateY(50%);
}

.map-section .dropdown-selected {
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.map-section .dropdown-selected p {
  font-size: 16px;
  color: rgba(50, 50, 50, 1);
  font-weight: 500;
}



.map-section .dropdown-options {
  position: absolute;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  display: none;
  z-index: 1;

}

.map-section .dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.map-section .dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
}

.map-section .dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}

.map-section .dropdown-options .option:hover {
  background-color: #dddcdc;
}


.map-section .dropdown-container .info-box {
  width: 100%;
}

.map-container .location-div {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  padding: 16px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-container .location-div .location-map {
  width: 100%;
  height: 652px;
}

.map-container .location-div .location-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

/* Map */







/* Time-Line */

.timeline-section {
  width: 100%;
}

.timeline-section .timeline-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.timeline-container .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}


.timeline-container .dropdown {
  width: 300px;
  position: relative;
}


.timeline-container .dropdown .head {
  position: relative;
}

.timeline-container .dropdown svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
}

.timeline-container .dropdown svg.active {
  transform: rotate(180deg) translateY(50%);
}

.timeline-container .dropdown-selected {
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.timeline-container .dropdown-selected p {
  font-size: 16px;
  color: rgba(50, 50, 50, 1);
  font-weight: 500;
}



.timeline-container .dropdown-options {
  position: absolute;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  display: none;
}

.timeline-container .dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.timeline-container .dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
}

.timeline-container .dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}


.dropdown-options .option:hover {
  background-color: #dddcdc;
}


.timeline-container .dropdown-container .info-box {
  width: 100%;
}


.timeline-container .table-div {
  width: 100%;
}

.timeline-container .table-div table {
  width: 100%;
  border-collapse: collapse;

}

.timeline-container .table-div table th {
  background-color: rgba(248, 250, 252, 1);
  font-size: 15px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.7);
  border-top: 1px solid rgba(230, 230, 230, 1);
  padding: 16px;
  text-align: left;
}

.timeline-container .table-div table td {
  background-color: rgba(255, 255, 255, 1);
  font-size: 15px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  border-bottom: 1px solid rgba(230, 230, 230, 1);
  padding: 16px;
}

.timeline-container .table-div table th:last-child {
  text-align: center;
  width: 200px;
}

.timeline-container .table-div table th:last-child {
  width: 200px;
}

.timeline-container .table-div table td .info {
  width: 100%;
  padding: 11px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
}

.timeline-container .table-div table td .info.passed {
  background-color: rgba(99, 99, 99, 1);
}

.timeline-container .table-div table td .info.on {
  background-color: rgba(15, 139, 11, 1);
}


.timeline-container .table-div table td .info.off {
  background-color: rgba(169, 6, 6, 1);
}


.timeline-container .date-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 16px;
  background-color: rgba(255, 255, 255, 1);
}






.timeline-popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  background-color: rgba(33, 33, 33, 0.1);
}

.timeline-popup .timeline-succes {
  max-width: 400px;
  width: 100%;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 8px -4px rgba(16, 24, 40, 0.04),
    0 20px 24px -4px rgba(16, 24, 40, 0.1);
  border-radius: 12px;
}

.timeline-popup .timeline-succes .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  width: 100%;
}


.timeline-popup .timeline-succes .text p {
  font-size: 32px;
  font-weight: 600;
  color: rgba(96, 96, 96, 1);
}



.timeline-popup .timeline-succes .text span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(146, 146, 146, 1);
}

.timeline-popup .timeline-succes .ok-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  border: none;
  outline: none;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  background-color: rgba(31, 89, 233, 1);
  margin-top: 12px;
  cursor: pointer;
}





/* Time-Line */









/* Add-part */

.add-part-section {
  width: 100%;
}

.add-part {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.add-part form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.add-part .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.add-part .part-info-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(255, 255, 255, 1);
  padding: 32px 16px 24px 16px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.add-part .part-info-container {
  display: flex;
  gap: 16px;
  width: 100%;
}



.add-part .part-info-container .info-box {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 100%;
}

.add-part .part-info-container .info-box input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
  outline: none;
}

.add-part .part-info-container .info-box label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}


.add-part .note label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.add-part .note textarea {
  outline: none;
  width: 100%;
  height: 60px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  background-color: rgba(255, 255, 255, 1);
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(47, 47, 47, 1);
}

.add-part .note {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.add-part .sabe-btn-box .save-btn {
  padding: 12px;
  background-color: rgba(0, 103, 113, 1);
  display: flex;
  justify-content: center;
  width: 72px;
  border-radius: 4px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}


.add-part .dropdown {
  width: 100%;
  position: relative;
}


.add-part .dropdown .head {
  position: relative;
}

.add-part .dropdown svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
}

.add-part .dropdown svg.active {
  transform: rotate(180deg) translateY(50%);
}

.add-part .dropdown-selected {
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.add-part .dropdown-selected p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}



.add-part .dropdown-options {
  position: absolute;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  display: none;
  z-index: 1;
}

.add-part .dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.add-part .dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
}

.add-part .dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}

.add-part .dropdown-options .option:hover {
  background-color: #dddcdc;
}


.add-part .upload-section {
  width: 100%;
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.add-part .upload-section .head label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.add-part .upload-section .bottom {
  display: flex;
  justify-content: center;
  border: 1px dashed rgba(217, 217, 217, 1);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 20px 90px;
  cursor: pointer;
  width: 100%;
}

.add-part .upload-section .container {
  width: 100%;
  max-width: 700px;
}

.add-part .upload-section .upload-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  gap: 5px;
  text-align: center;
}

.add-part .upload-section .image-div {
  height: 350px;
  width: 100%;
  cursor: pointer;
  display: none;

}




.add-part .upload-section .upload-box .upload-text p {
  font-size: 16px;
  color: rgba(145, 145, 145, 1);
  font-weight: 400;
}

.add-part .upload-section .image-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.add-part .upload-section #file-input {
  display: none;
}

/* Add=part */










/* Parts */

.parts-section {
  width: 100%;
}

.parts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.parts .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.parts .add-techinician-btn {
  width: max-content;
  padding: 12px 24px;
  border: 1px dashed rgba(22, 97, 195, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background-color: rgba(238, 241, 252, 1);
  cursor: pointer;
  position: relative;
}

.parts .add-techinician-btn a {
  position: absolute;
  inset: 0;
}

.parts .add-techinician-btn p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(22, 97, 195, 1);
}



.parts .table-and-search {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.parts .table-and-search .search {
  width: 100%;
  position: relative;
}

.parts .table-and-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.parts .table-and-search .search input {
  width: 100%;
  padding: 10px 35px;
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;
}

.parts .table-and-search .search input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.6);
}

.parts .table-and-search .table-container {
  width: 100%;
}

.parts .table-and-search .table-container table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;

}

.parts .table-and-search .table-container table th {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.7);
  background-color: rgba(248, 250, 252, 1);
  padding: 15px 10px;
  border-top: 1px solid rgba(230, 230, 230, 1);

}

.parts .table-and-search .table-container table th:last-child {
  width: 180px;
  text-align: right;
}

.parts .table-and-search .table-container table td {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  border-bottom: 1px solid rgba(230, 230, 230, 1);
  padding: 15px 10px;
}

.parts .table-and-search .table-container table td:last-child {
  width: 180px;
}

.parts .table-and-search .table-container table td .buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.parts .table-and-search .table-container table td .delivered {
  background-color: rgba(20, 138, 16, 0.2);
  width: max-content;
  padding: 4px 8px;
  border-radius: 4px;
}

.parts .table-and-search .table-container table td .delivered p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 109, 12, 1);
}



.parts .table-and-search .table-container table td .buttons button {
  padding: 8px;
  border-radius: 2px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  outline: none;
  cursor: pointer;
}

.parts .table-and-search .table-container table td .buttons button p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
}

.parts .table-and-search .table-container table td .buttons .del-btn {
  background-color: rgba(215, 22, 22, 1);
}

.parts .table-and-search .table-container table td .buttons .edit-btn {
  background-color: rgba(212, 99, 0, 1);
}





/* Parts */
















/* Invoices */

.invoices-section {
  width: 100%;
}

.invoices {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.invoices .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}





.invoices .table-and-search {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.invoices .search-and-details {
  display: flex;
  gap: 20px;
}

.invoices .search-and-details .details-info {
  display: flex;
  gap: 10px;
  width: 100%;
}

.invoices .details-info .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  cursor: pointer;

}



.invoices .table-and-search .search {
  width: 100%;
  position: relative;
}

.invoices .table-and-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.invoices .table-and-search .search input {
  width: 100%;
  padding: 10px 35px;
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;
  height: 100%;
}

.invoices .table-and-search .search input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.6);
}

.invoices .dropdown {
  width: 100%;
  height: 100%;
  position: relative;
}


.invoices .dropdown .head {
  position: relative;
  width: 100%;
  height: 100%;
}

.invoices .dropdown .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  pointer-events: none;
}

.invoices .dropdown-selected {
  width: 100%;
  height: 100%;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.invoices .dropdown-selected p {
  font-size: 14px;
  color: rgba(50, 50, 50, 1);
  font-weight: 500;
}



.invoices .dropdown-options {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: none;
}

.invoices .dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.invoices .dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  background: #fff;
  z-index: 1;
}

.invoices .dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}

.invoices .dropdown-options .option:hover {
  background-color: #dddcdc;
}

.invoices .details-info .info-box {
  width: 100%;
  cursor: pointer;
}



.invoices .table-and-search .table-container {
  width: 100%;
}

.invoices .table-and-search .table-container table {
  width: 100%;
  border-collapse: collapse;
}

.invoices .table-and-search .table-container table tr {
  text-align: left;
}

.invoices .table-and-search .table-container table tr .completed {
  background-color: rgba(15, 109, 12, 0.2);
  width: max-content;
  padding: 4px 8px;
  border-radius: 4px;
}

.invoices .table-and-search .table-container table tr .completed p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 109, 12, 1);
}

.invoices .table-and-search .table-container table th {
  background-color: rgba(248, 250, 252, 1);
  color: rgba(33, 33, 33, 0.7);
  font-size: 12px;
  font-weight: 400;
  padding: 15px 25px;
  border-top: 1px solid rgba(230, 230, 230, 1);

}




.invoices .table-and-search .table-container table td {
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  padding: 15px 25px;
  border-bottom: 1px solid rgba(230, 230, 230, 1);

}



.invoices .action-div {
  position: relative;

}

.invoices .action-div .view-and-delete {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 4px;
  border: 0.5px solid rgba(218, 218, 218, 1);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 16.8px 0 rgba(103, 102, 102, 0.05);
  top: 100%;
  display: none;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 1;
  width: 150px;

}

.invoices .action-div .view-and-delete.active {
  display: flex;
  flex-direction: column;
}

.invoices .action-div .action {
  padding-left: 10px;
  display: flex;
  justify-content: flex-end;
}

.invoices .action-div .action svg {
  cursor: pointer;
}

.invoices .action-div .view-and-delete .icon-text {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

.invoices .action-div .view-and-delete .icon-text.delete {
  border-top: 1px solid rgba(218, 218, 218, 1);
}


.invoices .action-div .view-and-delete .icon-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(32, 34, 36, 1);
}



.invoices .table-and-search .table-container table td .paid p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 109, 12, 1);
}

.invoices .table-and-search .table-container table td .paid {
  background-color: rgba(20, 138, 16, 0.2);
  width: max-content;
  padding: 6px 10px;
  border-radius: 4px;
}






/* Invoices */


















/* Statement */

.statements-section {
  width: 100%;
}

.statements {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.statements .statements-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;

}

.statements .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.statements .export-pdf {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.statements .export-pdf button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 8px 10px;
  outline: none;
  background-color: rgba(255, 255, 255, 1);
  border: solid 1px #f0f0f0;
  border-radius: 4px;
  cursor: pointer;
}

.statements .export-pdf button p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(123, 118, 118, 1);
}

.statements .customer-info-section .customer-info-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.statements .customer-info-section .customer-info-container .customer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}


.statements .customer-info-section .customer-info-container .customer-info p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(130, 130, 130, 1);
}

.statements .customer-info-section .customer-info-container .customer-info span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(61, 61, 61, 1);
}

.statements .customer-info-section {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 4px;
  border: solid 1px rgba(240, 240, 240, 1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.statements .customer-info-section .info-tittle h1 {
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 1);
}

/* Statement */








/* Technician-Report */
.technician-report-section {
  width: 100%;
}

.technician-reports {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.technician-reports .tittle h1 {
  font-size: 36px;
  font-weight: 600;
  color: rgba(46, 46, 46, 1);
}

.technician-reports .total-container {
  width: 100%;
  display: flex;
  gap: 16px;
}

.technician-reports .total-container .total-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 1);
  padding: 16px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
}

.technician-reports .total-container .total-box .logo {
  width: 44px;
  height: 44px;
}

.technician-reports .total-container .total-box .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technician-reports .total-container .total-box .price p {
  font-size: 24px;
  font-weight: 600;
  color: rgba(47, 47, 47, 1);
}

.technician-reports .total-container .total-box .price span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(104, 104, 104, 1);
  font-style: italic;
}

.technician-reports .total-container .total-box .price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.technician-reports .table-and-search {
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.technician-reports .search-and-details {
  display: flex;
  gap: 20px;
}

.technician-reports .search-and-details .details-info {
  display: flex;
  gap: 10px;
  width: 100%;
}

.technician-reports .details-info .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  cursor: pointer;

}



.technician-reports .table-and-search .search {
  width: 100%;
  position: relative;
}

.technician-reports .table-and-search .search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.technician-reports .table-and-search .search input {
  width: 100%;
  padding: 10px 35px;
  background-color: rgba(248, 250, 252, 1);
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 4px;
  outline: none;
  height: 100%;
}

.table-and-search .search input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 33, 33, 0.6);
}

.technician-reports .dropdown {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}


.technician-reports .dropdown .head {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  display: flex;
  align-items: center;
  padding: 12px 16px;
}

.technician-reports .dropdown .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  pointer-events: none;
}

.technician-reports.dropdown-selected {
  width: 100%;
  height: 100%;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(240, 240, 240, 1);
  padding: 12px 16px;
}

.technician-reports .dropdown-selected p {
  font-size: 14px;
  color: rgba(50, 50, 50, 1);
  font-weight: 500;
}



.dropdown-options {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: none;
  /* Başlanğıcda gizli */
}

.dropdown-options.active {
  display: flex;
  flex-direction: column;
}

.dropdown-options .option {
  cursor: pointer;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  background: #fff;
}

.dropdown-options .option p {
  font-size: 16px;
  color: rgba(47, 47, 47, 1);
  font-weight: 500;
}

.dropdown-options .option:hover {
  background-color: #dddcdc;
}





.table-and-search .table-container {
  width: 100%;
}

.table-and-search .table-container table {
  width: 100%;
  border-collapse: collapse;
}

.table-and-search .table-container table tr {
  text-align: left;
}

.table-and-search .table-container table tr .completed {
  background-color: rgba(15, 109, 12, 0.2);
  width: max-content;
  padding: 4px 8px;
  border-radius: 4px;
}

.table-and-search .table-container table tr .completed p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(15, 109, 12, 1);
}

.table-and-search .table-container table th {
  background-color: rgba(248, 250, 252, 1);
  color: rgba(33, 33, 33, 0.7);
  font-size: 12px;
  font-weight: 400;
  padding: 15px 25px;
  border-top: 1px solid rgba(240, 240, 240, 1);

}



.table-and-search .table-container table th:last-child {
  width: 100px;
  text-align: right;
}


.table-and-search .table-container table td {
  font-size: 12px;
  font-weight: 400;
  color: rgba(33, 33, 33, 1);
  padding: 15px 25px;
  border-bottom: 1px solid rgba(230, 230, 230, 1);

}

.table-and-search .table-container table td:last-child {
  width: 100px;
  display: flex;
  justify-content: flex-end;
}


.table-and-search .table-container table td .paid p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 109, 12, 1);
}

.table-and-search .table-container table td .paid {
  background-color: rgba(20, 138, 16, 0.2);
  width: max-content;
  padding: 6px 10px;
  border-radius: 4px;
}

/* Technician-Report */







.pagination-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.pagination-prev,
.pagination-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}


.pagination-page {
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  border: none;
  outline: none;
  background-color: transparent;
  width: 32px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(66, 66, 66, 1);

}

.pagination-page.active {
  background-color: rgba(228, 236, 248, 1);
  border: 1px solid rgba(172, 197, 234, 1);

}

.pagination-dots {
  padding: 6px 4px;
  display: flex;
  align-items: center;
}


.dashboard-footer {
  width: 100%;
  padding: 20px 24px;
}

.footer-text {
  width: 100%;
  border-top: 1px solid rgba(233, 233, 233, 1);
  padding-top: 20px;
}

.footer-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(142, 142, 147, 1);
}




@media (max-width:1300px) {
  body {
    background-color: rgba(255, 255, 255, 1);
  }

  .dashboard-header .sidebar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .dashboard-header .sidebar-toggle span {
    width: 24px;
    height: 2px;
    background-color: rgba(20, 27, 52, 1);
    border-radius: 1.5px;
  }

  .dashboard-header .logo {
    display: none;
  }

  .dashboard-header.technician .right .user {
    display: none;
  }



  .dashboard-body .sidebar {
    position: absolute;
    top: 0;
    left: -256px;
    width: 256px;
    transition: 0.5s ease;
    z-index: 2;
  }

  .dashboard-body .sidebar.active {
    position: absolute;
    left: 0;
  }

  .dashboard {
    gap: 0;
  }

  .pagination-container {
    justify-content: flex-start;
  }








  /* Dashboard-Home */


  .right-content {
    padding: 0;
  }

  .overview-container {
    display: flex;
    flex-direction: column;
  }

  .overview-container .overview-box h1 {
    font-size: 24px;
  }

  .charts-section {
    padding: 0 8px;
  }


  .income-container {
    flex-direction: column;
  }

  .income-container .left .head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .income-container .blue-circle-label {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: center;
    /* justify-self: center; */
  }

  .income-container .left .head h1 {
    font-size: 16px;
    grid-column: 1;
  }

  .income-container .year-selector {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .income-container .right .income-text span {
    font-size: 14px;
  }

  .income-container .right .income-text p {
    font-size: 20px;
  }


  .Orderproses-container {
    flex-direction: column-reverse;
  }

  .Orderproses-container .right .donutChart {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .Orderproses-container .right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    width: 100%;

  }


  .Orderproses-container .left .status-item-container {
    flex-direction: column;
    width: 100%;
  }

  .Orderproses-container .left .head .status-text-container {
    flex-direction: column;
    width: 100%;
  }

  .Orderproses-container .left {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);


  }



  .Orderproses-container .order-date-div {
    display: none;
  }


  .Orderproses-container .right .order-date-div.mobile {
    /* display: flex; */
    width: 100%;
  }

  .Orderproses-container .right .order-date-div.mobile h1 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(14, 19, 47, 1);
  }

  .Orderproses-container .status-text p {
    font-size: 12px;
  }

  .Orderproses-container .status-text span {
    font-size: 12px;
  }


  .status-item-container .status-item p {
    font-size: 12px;
  }

  .status-item-container .status-item .circle {
    width: 16px;
    height: 16px;
  }


  /* Profile-Admin */
  .dashboard-body .profile .profile-tittle h1 {
    font-size: 24px;
  }

  .dashboard-body .profile .form-items-container {
    display: flex;
    flex-direction: column;
  }

  /* Profile-Admin */






  /* Service */
  .services {
    gap: 10px !important;
  }

  .services .tittle h1 {
    font-size: 24px;
  }

  .services .add-services-btn {
    padding: 10px 16px;
  }

  .services .add-services-btn p {
    font-size: 14px;
  }



  .services .table-and-search {
    gap: 15px;
  }

  .services {
    padding: 0;
    gap: 14px;
  }

  .services .table-container {
    overflow: scroll;
    width: 100%;
  }

  .services .table-container table {
    width: 768px !important;
  }

  .services .table-and-search {
    padding: 0;
  }

  .services .table-and-search .table-container table td .buttons button p {
    font-size: 12px;
  }

  .services .pagination-container {
    justify-content: flex-start;
  }


  .service-popup {
    padding: 20px;
  }

  .service-popup .service-container {
    width: 100%;
    max-width: 353px;
  }

  .service-form .head {
    padding-bottom: 10px;
  }

  .service-popup .service-container .service-form {
    gap: 15px;
  }

  .service-form .form-item input {
    padding: 16px;
  }

  /* Services */






  /* Brands */
  .brands {
    gap: 10px;
  }

  .brands .tittle h1 {
    font-size: 24px;
    font-weight: 600;
    color: rgba(46, 46, 46, 1);
  }

  .brands .add-brands-btn {
    padding: 10px 16px;
  }

  .brands .add-brands-btn p {
    font-size: 14px;
  }



  .brands .table-and-search .table-container table td .buttons button p {
    font-size: 12px;
  }

  .brands .table-and-search .table-container table td .buttons button {
    padding: 6px;
  }



  .brands .table-and-search {
    padding: 0;
    border: none;
    gap: 10px;
  }





  .brands-popup {
    padding: 20px;
  }

  .brands-popup .brands-container {
    width: 100%;
    max-width: 353px;
  }

  /* Brands */






  /* Technicians */
  .technicians {
    gap: 10px !important;
  }

  .techicians .tittle h1 {
    font-size: 24px;
  }

  .techicians .add-techinician-btn {
    padding: 10px 16px;
  }

  .techicians .add-techinician-btn p {
    font-size: 14px;
  }


  .techicians .table-container {
    overflow: scroll !important;
    width: 100% !important;
  }

  .techicians .table-container table {
    width: 968px !important;
  }

  .techicians .table-and-search {
    padding: 0;
  }

  .techicians .table-and-search .search input {
    padding: 10px 35px;
  }

  .techicians .table-and-search {
    padding: 0;
    gap: 10px;
  }

  .techicians {
    gap: 10px;
  }

  /* Technicians */




  /* Technician-Reports */

  .technician-reports {
    gap: 10px;
  }

  .technician-reports .tittle h1 {
    font-size: 24px;
  }

  .technician-reports .table-and-search {
    padding: 0;
    border: none;
    gap: 12px;
  }

  .technician-reports .total-container {
    flex-direction: column;
    gap: 10px;
  }

  .technician-reports .search-and-details {
    gap: 14px;
  }

  .technician-reports .table-and-search .search input {
    padding: 10px 35px;
  }

  .technician-reports .table-container {
    width: 100%;
    overflow: scroll;
  }

  .technician-reports .table-container table {
    width: 1100px !important;
  }

  .technician-reports.total-container {
    display: flex;
    flex-direction: column;
  }

  .technician-reports .search-and-details {
    flex-direction: column;
  }

  .technician-reports .search-and-details .details-info {
    width: 100% !important;
    flex-direction: column;
  }

  .technician-reports .search-and-details .details-info .dropdown {
    width: 100% !important;
  }

  .technician-reports .dropdown-selected {
    width: 100%;
    padding: 10px;
  }

  .technician-reports .dropdown-selected p {
    font-size: 14px;
  }


  /* Technician-Report */






  /* Add-Technician */
  .add-technician .form-section {
    padding: 24px 16px;
  }

  .add-technician .tittle h1 {
    font-size: 24px;
  }

  .add-technician .form-items-list {
    flex-direction: column;
  }

  .add-technician .upload-section {
    padding: 20px 10px;
  }

  .add-technician .upload-section .bottom {
    padding: 20px 15px;
  }

  /* Add-Technician */





  /* Order-Details */
  .order-details .tittle h1 {
    font-size: 24px;
  }

  .order-details .tittle p {
    font-size: 16px;
  }


  .order-details .upload-section .bottom {
    padding: 20px;
  }

  .order-details .info-section {
    gap: 18px;
  }

  .order-details .info-section .info-container {
    flex-direction: column;
    gap: 15px;
  }

  .order-details .info-section .info-container .info-box {
    gap: 7px;
  }

  /* Order-Details */




  /* Spare-Parts */
  .spare-parts {
    gap: 10px;
  }

  .spare-parts .tittle h1 {
    font-size: 24px;
  }

  .spare-parts .table-container {
    width: 100%;
    overflow: scroll;
  }

  .spare-parts .table-container table {
    width: 1200px !important;
  }

  .spare-parts .total-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .spare-parts .table-and-search {
    padding: 0;
    border: none;
    gap: 10px;
  }

  .spare-parts .search-and-details {
    flex-direction: column;
    gap: 15px;
  }

  .spare-parts .search-and-details .details-info {
    width: 100% !important;
  }

  .spare-parts .info-box {
    width: 100%;
  }

  .spare-parts .search-and-details .details-info .dropdown {
    width: 100% !important;
  }

  .spare-parts .dropdown-selected {
    width: 100% !important;
  }

  .spare-parts .dropdown-options {
    width: 100% !important;
  }

  .spare-parts .dropdown-options .option {
    width: 100% !important;
  }





  /* Spare-Parts */









  /* Login */
  .login-section {
    padding: 40px 20px;
    align-items: flex-start;
    justify-content: center;
  }

  .login-section .login-container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 353px;
    justify-content: center;

  }

  .login-section .image-container .image-div {
    display: none;
  }

  .login-section .image-container {
    width: 204px;

  }

  .login-section .image-container .image-div-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 111px;

  }

  .login-section .image-container .image-div-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



  .login-section .form-container {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .login-section .form-container .input-container {
    flex-direction: column;
    gap: 18px;
  }

  .login-section .form-container .tittle {
    display: none;
  }

  /* Login */













  /*Order-Report */
  .order-report .head h1 {
    font-size: 24px;
  }

  .order-report .head {
    flex-direction: column;
    gap: 10px;
  }

  .order-report .button-container {
    width: 100%;
  }

  .order-report .button-container .btn {
    width: 100%;
    justify-content: space-between;
  }


  .order-report .report-info-container {
    display: flex;
    flex-direction: column;
  }

  .order-report .payments-information-container {
    flex-direction: column;
  }


  .order-report .upload-section .bottom {
    padding: 20px;
  }

  .order-report .upload-section .upload-box .upload-text p {
    line-height: 22px;
  }


  .popup-payment {
    padding: 20px;
  }

  /* Order-Report */






  /* Add-Neworder */
  .add-new-order .tittle h1 {
    font-size: 24px;
  }

  .add-new-order .customer-info-section .customer-info-container {
    display: flex;
    flex-direction: column;
  }



  .add-new-order .order-info-container {
    display: flex;
    flex-direction: column;
  }

  .add-new-order .customer-info-section {
    padding: 24px 16px;
  }

  /* Add-Neworder */









  /* Orders */
  .Orders {
    gap: 10px;
  }

  .Orders .tittle h1 {
    font-size: 24px;
  }

  .Orders .table-and-search .search {
    width: 100%;
  }

  .Orders .table-and-search .search input {
    padding: 10px 35px;
    width: 100%;
  }

  .Orders .table-and-search {
    padding: 0;
    gap: 10px;
    width: 100%;
  }

  .Orders .search-and-details .details-info {
    flex-direction: column;
  }

  .Orders .search-and-details {
    flex-direction: column;
    gap: 10px;
  }

  .Orders .table-container {
    overflow: scroll;
    border: 1px solid rgba(240, 240, 240, 1) !important;
    border-radius: 4px;
    padding: 15px;

  }

  .Orders .table-container table {
    width: 1100px !important;
  }



  /* Orders */










  /*Order-Invoince */
  .invoince-content .tittle h1 {
    font-size: 24px;
  }

  .invoince-content .tittle {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .invoince-content .tittle .button-box {
    width: 100%;
  }

  .invoince-content .tittle .button-box .btn {
    width: 100%;
    justify-content: space-between;
  }

  .custom-box .input-container {
    flex-direction: column;
  }



  .invoince-content .total-container {
    display: flex;
    flex-direction: column;
  }

  .invoince-content .buttons-div {
    width: 100%;
    gap: 8px;
  }

  .invoince-content .buttons-div button {
    width: 100%;
    font-size: 12px;
    text-wrap: nowrap;

  }

  .invoince-content .buttons-div .show-invoice {
    width: 100%;
    text-wrap: nowrap;
    text-align: center;
  }

  .invoince-content .buttons-div .show-invoice p {
    font-size: 12px;
  }

  .invoince-content .payments-section .payment-total-container {
    flex-direction: column;
  }


  /* Order-Invoince */
























































































  /* Technician-Profile */
  .myinfo-section .myinfo-container {
    flex-direction: column;
  }

  .myinfo-section .tittle-container .top {
    font-size: 24px;
  }

  .personal-work-container .personal-box .head .edit-btn {
    width: 86px;
    display: flex;
    justify-content: center;
    padding: 7px 0;
  }

  .myinfo-container .about-info-personal .input-div-container {
    display: flex;
    flex-direction: column;
  }

  .myinfo-container .about-info-personal {
    display: flex;
    flex-direction: column;
  }


  .about-info-personal .image-div {
    width: 80px;
    min-width: 0;
    height: 80px;
    margin: 0 auto;
  }

  .about-info-personal .image-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .myinfo-container .about-info-work .input-box-container {
    display: flex;
    flex-direction: column;
  }

  .personal-work-container .work-box .head .edit-btn {
    padding: 7px;
    width: 86px;
    display: flex;
    justify-content: center;
  }


  .myinfo-section .personal-work-section {
    padding: 0;
    border: none;
  }

  /* Technician-Profile */













  /* Map */
  .map-container .location-div {
    padding: 0;
  }


  .map-container .tittle h1 {
    font-size: 24px;
  }

  .map-section .dropdown-selected p {
    font-size: 14px;
  }

  .map-container .location-div .location-map {
    height: 560px;
  }

  /* Map */







  /* Time-Line */
  .timeline-container .tittle h1 {
    font-size: 24px;
  }

  .timeline-container .date-container {
    padding: 0;
    border: none;
    gap: 16px;
  }

  .timeline-container .dropdown-selected p {
    font-size: 14px;
  }

  .timeline-container .dropdown {
    width: 100%;
  }

  .timeline-container .table-div table th {
    font-size: 12px;
  }


  .timeline-container .table-div table td {
    font-size: 12px;
  }

  .timeline-container .table-div table td .info {
    width: 104px;
  }

  .timeline-container .table-div table td:last-child {
    display: flex;
    justify-content: flex-end;
  }

  .timeline-container .table-div table th:last-child {
    text-align: center;
    width: 104px;
  }





  .timeline-popup {
    padding: 20px;
  }

  .timeline-popup .timeline-succes {
    max-width: 393px;
    width: 100%;
  }

  .timeline-popup .timeline-succes .text p {
    font-size: 28px;
  }

  .timeline-popup .timeline-succes .text span {
    font-size: 14px;
  }

  /* Time-Line */








  /* Add-Part */
  .add-part .tittle h1 {
    font-size: 24px;
  }

  .add-part .part-info-container {
    flex-direction: column;
  }

  .add-part .upload-section .bottom {
    padding: 20px 10px;
  }

  /* Add-part */














  /* Parts */

  .parts .tittle h1 {
    font-size: 24px;
  }

  .parts .add-techinician-btn {
    padding: 10px 16px;
  }

  .parts .table-and-search {
    padding: 0;
    border: none;
  }

  .parts .table-and-search .search input {
    padding: 10px 35px;
  }

  .parts .table-container {
    overflow: scroll !important;
    width: 100% !important;
  }

  .parts .table-container table {
    width: 938px !important;
  }

  .parts .table-and-search {
    gap: 10px;
  }





  /* Parts */









  /* Invoices */

  .invoices .tittle h1 {
    font-size: 24px;
  }

  .table-and-search .search input {
    padding: 10px 35px;
  }

  .invoices .table-and-search {
    padding: 0;
    border: none;
    gap: 14px;
  }

  .invoices .table-container {
    width: 100%;
    overflow: scroll;
  }

  .invoices .table-container table {
    width: 1100px !important;
  }

  .invoices .total-container {
    display: flex;
    flex-direction: column;
  }

  .invoices .search-and-details {
    flex-direction: column;
    gap: 10px;
  }

  .invoices .search-and-details .details-info {
    width: 100%;
    flex-direction: column;
  }

  .invoices .search-and-details .details-info .dropdown {
    width: 100% !important;
  }

  .invoices .dropdown-selected {
    width: 100%;
    padding: 10px;
  }

  .invoices .dropdown-options .option {
    padding: 10px;
  }

  .invoices .dropdown-selected p {
    font-size: 14px;
  }





  /* Invoices */














  /* Statements */
  .statements .tittle h1 {
    font-size: 24px;
  }


  .statements .export-pdf button {
    padding: 8px 10px;
  }

  .statements .export-pdf button p {
    font-size: 16px;
  }

  .statements .statements-content {
    gap: 10px;
  }

  /* Statemens */


  .footer-text p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(142, 142, 147, 1);
  }








}