/* dashboard */


@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

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

a {
  text-decoration: none;
}

li {
  list-style: none;
}

:root {
  --poppins: 'Poppins', sans-serif;
  --lato: 'Lato', sans-serif;

  --light: #F9F9F9;
  --blue: #3C91E6;
  --light-blue: #CFE8FF;
  --grey: #eee;
  --dark-grey: #AAAAAA;
  --dark: #342E37;
  --red: #DB504A;
  --yellow: #FFCE26;
  --light-yellow: #FFF2C6;
  --orange: #FD7238;
  --light-orange: #FFE0D3;
}

html {
  overflow-x: hidden;
}

body.dark {
  --light: #0C0C1E;
  --grey: #060714;
  --dark: #FBFBFB;
}

body {
  background: var(--grey);
  overflow-x: hidden;
}




/* SIDEBAR */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background: var(--light);
  z-index: 2000;
  font-family: var(--lato);
  transition: .3s ease;
  overflow-x: hidden;
  scrollbar-width: none;
}

#sidebar::--webkit-scrollbar {
  display: none;
}

#sidebar.hide {
  width: 60px;
}

#sidebar .brand {
  font-size: 24px;
  font-weight: 700;
  height: 56px;
  display: flex;
  align-items: center;
  color: var(--blue);
  position: sticky;
  top: 0;
  left: 0;
  background: var(--light);
  z-index: 500;
  padding-bottom: 20px;
  box-sizing: content-box;
}

#sidebar .brand .bx {
  min-width: 60px;
  display: flex;
  justify-content: center;
}

#sidebar .side-menu {
  width: 100%;
  margin-top: 48px;
}

#sidebar .side-menu li {
  height: 48px;
  background: transparent;
  /* margin-left: 6px; */
  margin-left: -24px;
  border-radius: 48px 0 0 48px;
  padding: 4px;
}

#sidebar .side-menu li.active {
  background: var(--grey);
  position: relative;
}

#sidebar .side-menu li.active::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -40px;
  right: 0;
  box-shadow: 20px 20px 0 var(--grey);
  z-index: -1;
}

#sidebar .side-menu li.active::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  bottom: -40px;
  right: 0;
  box-shadow: 20px -20px 0 var(--grey);
  z-index: -1;
}

#sidebar .side-menu li a {
  width: 100%;
  height: 100%;
  background: var(--light);
  display: flex;
  align-items: center;
  border-radius: 48px;
  font-size: 16px;
  color: var(--dark);
  white-space: nowrap;
  overflow-x: hidden;
}

#sidebar .side-menu.top li.active a {
  color: var(--blue);
}

#sidebar.hide .side-menu li a {
  width: calc(48px - (4px * 2));
  transition: width .3s ease;
}

#sidebar .side-menu li a.logout {
  color: var(--red);
}

#sidebar .side-menu.top li a:hover {
  color: var(--blue);
}

#sidebar .side-menu li a .bx {
  min-width: calc(60px - ((4px + 6px) * 2));
  display: flex;
  justify-content: center;
}

#sidebar .side-menu.bottom li:nth-last-of-type(-n+2) {
  /* Son iki <li>'yi seç */
  position: absolute;
  /* Ebeveynine göre konumlandır */
  bottom: 0;
  /* En alt */
  left: 0;
  right: 0;
  text-align: center;
}

/* Birbirinin üzerine binmesini engellemek için */
#sidebar .side-menu.bottom li:nth-last-of-type(2) {
  bottom: 40px;
  /* İkinci son öğeyi yukarı kaydır */
}

/* SIDEBAR */





/* CONTENT */
#content {
  position: relative;
  width: calc(100% - 220px);
  left: 106px;
  transition: .3s ease;
}

#sidebar.hide~#content {
  width: calc(100% - 60px);
  left: 28px;
}




/* NAVBAR */
#content nav {
  height: 56px;
  background: var(--light);
  padding: 0 24px;
  display: flex;
  align-items: center;
  grid-gap: 24px;
  font-family: var(--lato);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

#content nav::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -40px;
  left: 0;
  border-radius: 50%;
  box-shadow: -20px -20px 0 var(--light);
}

#content nav a {
  color: var(--dark);
}

#content nav .bx.bx-menu {
  cursor: pointer;
  color: var(--dark);
}

#content nav .nav-link {
  font-size: 16px;
  transition: .3s ease;
}

#content nav .nav-link:hover {
  color: var(--blue);
}

#content nav form {
  max-width: 400px;
  width: 100%;
  margin-right: auto;
}

#content nav form .form-input {
  display: flex;
  align-items: center;
  height: 36px;
}

#content nav form .form-input input {
  flex-grow: 1;
  padding: 0 16px;
  height: 100%;
  border: none;
  background: var(--grey);
  border-radius: 36px 0 0 36px;
  outline: none;
  width: 100%;
  color: var(--dark);
}

#content nav form .form-input button {
  width: 36px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  color: var(--light);
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 0 36px 36px 0;
  cursor: pointer;
}

#content nav .notification {
  font-size: 20px;
  position: relative;
}

#content nav .notification .num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--light);
  background: var(--red);
  color: var(--light);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Notification Dropdown */
#content nav .notification-menu {
  display: none;
  position: absolute;
  top: 56px;
  right: 0;
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  width: 250px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 9999;
  font-family: var(--lato);
}

#content nav .notification-menu ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}

#content nav .notification-menu li {
  padding: 10px;
  border-bottom: 1px solid var(--grey);
  color: var(--dark);
}

#content nav .notification-menu li:hover {
  background-color: var(--light-blue);
  color: var(--dark);
}

#content nav .notification-menu li:hover a {
  background-color: var(--dark-grey);
  color: var(--light);
}

body.dark #content nav .notification-menu li:hover {
  background-color: var(--light-blue);
  color: var(--light);
}

body.dark #content nav .notification-menu li a {
  background-color: var(--dark-grey);
  color: var(--light);
}

#content nav .profile img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

#content nav .profile-menu {
  display: none;
  position: absolute;
  top: 56px;
  right: 0;
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  width: 200px;
  z-index: 9999;
  font-family: var(--lato);
}

#content nav .profile-menu ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}

#content nav .profile-menu li {
  padding: 10px;
  border-bottom: 1px solid var(--grey);
}

#content nav .profile-menu li:hover {
  background-color: var(--light-blue);
  color: var(--dark);
}

#content nav .profile-menu li a {
  color: var(--dark);
  font-size: 16px;
}

body.dark #content nav .profile-menu li:hover a {
  color: var(--light);
}

body.dark #content nav .profile-menu li a {
  color: var(--dark);
}

#content nav .profile-menu li:hover a {
  color: var(--dark);
}

/* Active State for Menus */
#content nav .notification-menu.show,
#content nav .profile-menu.show {
  display: block;
}

#content nav .switch-mode {
  display: block;
  min-width: 50px;
  height: 25px;
  border-radius: 25px;
  background: var(--grey);
  cursor: pointer;
  position: relative;
}

#content nav .switch-mode::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: calc(25px - 4px);
  background: var(--blue);
  border-radius: 50%;
  transition: all .3s ease;
}

#content nav #switch-mode:checked+.switch-mode::before {
  left: calc(100% - (25px - 4px) - 2px);
}


#content nav .swith-lm {
  background-color: var(--grey);
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px;
  position: relative;
  height: 21px;
  width: 45px;
  transform: scale(1.5);
}

#content nav .swith-lm .ball {
  background-color: var(--blue);
  border-radius: 50%;
  position: absolute;
  /* top: 2px; */
  left: 2px;
  height: 20px;
  width: 20px;
  transform: translateX(0px);
  transition: transform 0.2s linear;
}

#content nav .checkbox:checked+.swith-lm .ball {
  transform: translateX(22px);
}

.bxs-moon {
  color: var(--yellow);
}

.bx-sun {
  color: var(--orange);
  animation: shakeOn .7s;
}



/* NAVBAR */





/* MAIN */
#content main {
  width: 100%;
  padding: 36px 24px;
  font-family: var(--poppins);
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

#content main .head-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 16px;
  flex-wrap: wrap;
}

#content main .head-title .left h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

#content main .head-title .left .breadcrumb {
  display: flex;
  align-items: center;
  grid-gap: 16px;
}

#content main .head-title .left .breadcrumb li {
  color: var(--dark);
}

#content main .head-title .left .breadcrumb li a {
  color: var(--dark-grey);
  pointer-events: none;
}

#content main .head-title .left .breadcrumb li a.active {
  color: var(--blue);
  pointer-events: unset;
}

#content main .head-title .btn-download {
  height: 36px;
  padding: 0 16px;
  border-radius: 36px;
  background: var(--blue);
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  font-weight: 500;
}




#content main .box-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 24px;
  margin-top: 5px;
  padding: 14px;
}

#content main .box-info li {
  padding: 24px;
  background: var(--light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  grid-gap: 24px;
}

#content main .box-info li .bx {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#content main .box-info li:nth-child(1) .bx {
  background: var(--light-blue);
  color: var(--blue);
}

#content main .box-info li:nth-child(2) .bx {
  background: var(--light-yellow);
  color: var(--yellow);
}

#content main .box-info li:nth-child(3) .bx {
  background: var(--light-orange);
  color: var(--orange);
}

#content main .box-info li:nth-child(4) .bx {
  background: #b2ffb1;
  color: green;
}

#content main .box-info li .text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}

#content main .box-info li .text p {
  color: var(--dark);
}





#content main .table-data {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 12px;
  margin-top: 24px;
  width: 100%;
  color: var(--dark);
  padding: 10px;
}


#content main .table-data>div {
  border-radius: 20px;
  background: var(--light);
  padding: 24px;
  overflow-x: auto;
}

#content main .table-data .head {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  margin-bottom: 24px;
}

#content main .table-data .head h3 {
  margin-right: auto;
  font-size: 24px;
  font-weight: 600;
}

#content main .table-data .head .bx {
  cursor: pointer;
}

#content main .table-data .order {
  flex-grow: 1;
  flex-basis: 500px;
}

#content main .table-data .order table {
  width: 100%;
  border-collapse: collapse;
}

#content main .table-data .order table th {
  padding-bottom: 12px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid var(--grey);
}

#content main .table-data .order table td {
  padding: 16px 0;
}

#content main .table-data .order table tr td:first-child {
  display: flex;
  align-items: center;
  grid-gap: 12px;
  padding-left: 6px;
}

#content main .table-data .order table td img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

#content main .table-data .order table tbody tr:hover {
  background: var(--grey);
}

#content main .table-data .order table tr td .status {
  font-size: 10px;
  padding: 6px 16px;
  color: var(--light);
  border-radius: 20px;
  font-weight: 700;

}

#content main .table-data .order table tr td .status.completed {
  background: var(--blue);
}

#content main .table-data .order table tr td .status.process {
  background: var(--yellow);
}

#content main .table-data .order table tr td .status.pending {
  background: var(--orange);
}

#content main .table-data .order table tr td .status.reject {
  background: #ed8536;
  margin-left: -38px;
}

#content main .table-data .order table tr td .status.accept {
  background: #5fd45c
}


/* ============================
   TODO SECTION (UPDATED)
============================ */

#content main .table-data .todo {
  flex-grow: 1;
  flex-basis: 300px;
}

/* LIST */
#content main .table-data .todo .todo-list {
  width: 100%;
}

/* CARD STYLE */
#content main .table-data .todo .todo-list li {
  width: 100%;
  margin-bottom: 18px;
  /* background: #f3f3f3; */
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  /* important */
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #00000020;
}

#content main .table-data .todo .todo-list li:hover {
  transform: translateY(-3px);
}

/* TOP CONTENT ROW */
#content main .table-data .todo .todo-list li .todo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON */
#content main .table-data .todo .todo-list li .bx {
  cursor: pointer;
  font-size: 18px;
}

/* LEFT STATUS BORDER */
#content main .table-data .todo .todo-list li.completed {
  border-left: 8px solid var(--blue);
}

#content main .table-data .todo .todo-list li.not-completed {
  border-left: 8px solid var(--orange);
}

/* PROGRESS TEXT */
#content main .table-data .todo .todo-list li .progress-text {
  font-size: 13px;
  margin-top: 6px;
  color: var(--dark-grey);
}

/* PROGRESS BAR CONTAINER */
#content main .table-data .todo .todo-list li .progress-bar {
  height: 4px;
  margin-top: 12px;
  background: #fff;
}

/* PROGRESS FILL */
#content main .table-data .todo .todo-list li .progress-fill {
  height: 4px;
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* COLOR CONTROL */
#content main .table-data .todo .todo-list li.completed .progress-fill {
  background: var(--blue);
}

#content main .table-data .todo .todo-list li.not-completed .progress-fill {
  background: var(--orange);
}

/* REMOVE LAST MARGIN */
#content main .table-data .todo .todo-list li:last-child {
  margin-bottom: 0;
}

#content main .table-data .todo .todo-list li .todo-top p {
  margin-bottom: 0px;
}

/* ============================
   TODO FILTER BUTTONS
============================ */

#content main .table-data .todo .todo-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

#content main .table-data .todo .todo-filters button {
  border: none;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  background: #e5e5e5;
  color: var(--dark);
}

/* Active (All selected) */
#content main .table-data .todo .todo-filters button.active {
  background: #000;
  color: #fff;
}

/* Completed button */
#content main .table-data .todo .todo-filters .completed-btn {
  background: var(--blue);
  color: #fff;
}

/* Pending button */
#content main .table-data .todo .todo-filters .pending-btn {
  background: var(--orange);
  color: #fff;
}

/* Hover effect */
#content main .table-data .todo .todo-filters button:hover {
  opacity: 0.85;
}

#content main .table-data .todo .todo-filters button {
  background: #e5e5e5;
  color: var(--dark);
}

#content main .table-data .todo .todo-filters button.active {
  background: #000;
  color: #fff;
}

/* todo ends */

/* MAIN */
/* CONTENT */
#content main .menu,
#content nav .menu {

  display: none;
  list-style-type: none;
  padding-left: 20px;
  margin-top: 5px;
  position: absolute;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 200px;
}

#content main .menu a,
#content nav .menu a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 16px;
}

#content main .menu a:hover,
#content nav .menu a:hover {
  background-color: #444;
}

#content main .menu-link,
#content nav .menu-link {
  margin: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  color: #007bff;
}

#content main .menu-link:hover,
#content nav .menu-link:hover {
  text-decoration: underline;
}





/* Media Query for Smaller Screens */
@media screen and (max-width: 768px) {

  /* Reduce width of notification and profile menu */
  #content nav .notification-menu,
  #content nav .profile-menu {
    width: 180px;
  }

  #sidebar {
    width: 200px;
  }

  #content {
    width: calc(100% - 60px);
    left: 200px;
  }

  #content nav .nav-link {
    display: none;
  }
}




@media screen and (max-width: 576px) {

  #content nav .notification-menu,
  #content nav .profile-menu {
    width: 150px;
  }

  #content nav form .form-input input {
    display: none;
  }

  #content nav form .form-input button {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: none;
    color: var(--dark);
  }

  #content nav form.show .form-input input {
    display: block;
    width: 100%;
  }

  #content nav form.show .form-input button {
    width: 36px;
    height: 100%;
    border-radius: 0 36px 36px 0;
    color: var(--light);
    background: var(--red);
  }

  #content nav form.show~.notification,
  #content nav form.show~.profile {
    display: none;
  }

  #content main .box-info {
    grid-template-columns: 1fr;
  }

  #content main .table-data .head {
    min-width: 420px;
  }

  #content main .table-data .order table {
    min-width: 420px;
  }

  #content main .table-data .todo .todo-list {
    min-width: 420px;
  }
}

.dash-logo {
  width: 6rem;
  margin-top: 82px;
}



@keyframes bellRing {
  0% {
    transform: rotate(0);
  }

  5% {
    transform: rotate(15deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  15% {
    transform: rotate(12deg);
  }

  20% {
    transform: rotate(-12deg);
  }

  25% {
    transform: rotate(8deg);
  }

  30% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

.bell-animate {
  display: inline-block;
  transform-origin: top center;
  animation: bellRing 2s infinite;
}

.seller-box-info {
  padding-left: 0;
}


.page-section {
  display: none;
}

.page-section.active-section {
  display: block;
}

.edit-btn {
  background: #3C91E6;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.delete-btn {
  background: #DB504A;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.edit-btn:hover,
.delete-btn:hover {
  opacity: 0.8;
}


.list-of-services {
  height: 525px;
  overflow: scroll;
}

#content .main-two .table-data .list-of-services {
  flex-grow: 1;
  flex-basis: 800px;
}


.action-btns {
  display: flex;
  gap: 10px;
}

.action-btns a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.view-btn {
  background: #3C91E6;
}

.edit-btn {
  background: #28a745;
}

.delete-btn {
  background: #dc3545;
}

.action-btns a:hover {
  opacity: 0.8;
}

.profile-form {
  padding: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  margin-left: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  height: 47px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3C91E6;
}

.form-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.save-btn {
  background: #28a745;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.cancel-btn {
  background: #dc3545;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.save-btn:hover,
.cancel-btn:hover {
  opacity: 0.9;
}

/* booking */

.analytics-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  padding: 40px;
  background: linear-gradient(135deg, #6c5ce7, #8e44ad);
  border-radius: 25px;
}

.analytics-card {
  background: #f1f1f4;
  padding: 30px;
  border-radius: 20px;
}

.analytics-card h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #1e1e2d;
}

canvas {
  width: 100% !important;
  height: 350px !important;
}

/* Responsive */
@media(max-width: 992px) {
  .analytics-wrapper {
    grid-template-columns: 1fr;
  }
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  margin: 25px;
}


.profile-name {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  padding-top: 19px;
}

.text-profile {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  margin-left: 45px;
  color: #840000;
}



/* switchmode */


body {
  background: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
}

/* Switch container */
.switch {
  position: relative;
  display: inline-block;
  width: 74px;
  height: 32px;

}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider background */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff0000;
  ;
  border-radius: 50px;
  transition: 0.4s;
}

/* Circle */
.slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 1px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ON state */
.switch input:checked+.slider {
  background-color: #7ed321;
}

/* Move circle when checked */
.switch input:checked+.slider::before {
  transform: translateX(45px);
}

.icon-profile {
  font-size: 36px;
}

.header-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-btn {
  display: flex;
  gap: 15px;
}

.edit-text {
  background: #28a745;
  height: 34px;
  width: 68px;
}



/* < !----booking area revenue section----> */

/* Revenue Card */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.revenue-chart {
  height: 250px;
  background: linear-gradient(180deg, #ffe5d0, #fff);
  border-radius: 12px;
  margin-top: 15px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 484px;
  height: 650px;
  overflow: scroll;
}

.stat-card {
  /* padding: 20px; */
  border-radius: 14px;
  color: #333;
  padding-top: 35px;
  /* padding-left: 77px; */
  width: 200px;
  text-align: center;
}

.stat-card h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.orange {
  background: #ffe8d9;
}

.pink {
  background: #f7e4ff;
}

.green {
  background: #e4f8f0;
}

.yellow {
  background: #f0f7e4;
}

.blue {
  background: #e6eaf9;
}

.gray {
  background: #f1f2f6;
}

.red {
  background: #e6e6e6;
}

.violet {
  background: #fce8e8;
}




/* Table */
.table-card {
  margin-top: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  /* background: #fafafa; */
}

.badge {
  background: #ffe8d9;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* Donut Chart */
.donut {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(#ff8c42 60%,
      #ffd166 60% 80%,
      #8ecae6 80% 90%,
      #cdb4db 90% 100%);
  margin: 20px auto;
  position: relative;
}

.donut::after {
  content: "5700\A Total Bookings";
  white-space: pre;
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

@media(max-width: 1000px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
}

.order {
  height: 532px;
  overflow: scroll;
}

.icons {
  font-size: 30px;
}

.icon-text {
  padding-right: 10px;
}


complaint box .dashboard {
  padding: 20px;
}


/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
  /* margin-top: 42px; */

}

.card {
  background: white;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  height: 75%;
  min-height: 160px;
}

.card i {
  font-size: 35px;
}

.total i {
  color: #3498db;
}

.pending i {
  color: #e67e22;
}

.progress i {
  color: #9b59b6;
}

.resolved i {
  color: #2ecc71;
}

/* Filters */
.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filters input,
.filters select {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.filters button {
  padding: 8px 15px;
  border: none;
  background: #3498db;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* Table */
.table-section {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  height: 450px;
  overflow: scroll;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.high {
  color: red;
  font-weight: bold;
}

.medium {
  color: orange;
  font-weight: bold;
}

.pending-text {
  color: #e67e22;
  font-weight: bold;
}

.progress-text {
  color: #9b59b6;
  font-weight: bold;
}

.view {
  background: #3498db;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.close {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.complaint-text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.number-text {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}


.resolved-text {
  color: #0ca302;
  font-weight: bold;
}


.low {
  color: #0dcaf0;
  font-weight: bold;

}

.order-list {
  height: 652px;
  overflow: scroll;
}

.order-box {
  height: 900px;
  overflow: scroll;
}

.log-out-btn {
  margin-left: 40px;
}

.user-block-ul {
  grid-gap: 0px !important;
  /* border-radius: 20px !important; */

}

.user-block-ul li {
  border-radius: 0px !important;
  border-right: 1px solid #0000001a;

}

/* .user-one-block {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
} */


.ub-icon-one {
  background: transparent !important;
  color: var(--blue);
  border: 1px solid;
}

.ub-icon-two {
  background: transparent !important;
  border: 1px solid;
}

.ub-icon-three {
  background: transparent !important;
  border: 1px solid;
}

.ub-icon-four {
  background: transparent !important;
  border: 1px solid;
}

.user-main-order-one {
  flex-grow: 5 !important;
}

.completed-services-timeline {
  padding: 20px;
}

/* Header */
.completed-services-timeline .head h3 {
  margin: 0;
  font-size: 20px;
}

.completed-services-timeline .sub-text {
  font-size: 13px;
  color: #888;
}

/* Timeline base */
.timeline {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e0e0e0;
}

/* Each item */
.timeline li {
  position: relative;
  padding-left: 55px;
  margin-bottom: 25px;
}

/* Icon */
.timeline-icon {
  position: absolute;
  left: 0;
  top: 5px;
  width: 36px;
  height: 36px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon i {
  color: #fff;
  font-size: 18px;
}

/* Content */
.timeline-content {
  background: #fff;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.3s;
}

/* Hover effect */
.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Top row */
.timeline-content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-content h4 {
  margin: 0;
  font-size: 16px;
}

/* Badge */
.badge {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 3px 8px;
  font-size: 11px;
  border-radius: 5px;
}

/* Description */
.timeline-content p {
  margin: 6px 0;
  font-size: 13px;
  color: #666;
}

/* Meta */
.meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
}





.timeline-icon.pending {
  background: #ffcc00;
  color: #000;
}

.timeline-icon.progress {
  background: #3498db;
  color: #fff;
}

.timeline-icon.resolved {
  background: #2ecc71;
  color: #fff;
}

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.badge.pending {
  background: #fff3cd;
  color: #856404;
}

.badge.progress {
  background: #d1ecf1;
  color: #0c5460;
}

.badge.resolved {
  background: #d4edda;
  color: #155724;
}

.learning-wpr {
  height: 532px;
  overflow: scroll;
}

.bdg-wpr {
  width: 140px;
  height: 20px;
}

@media (max-width: 575.98px) {

  .dash-logo {
    width: 3rem;
    margin-top: 82px;
  }

  .order {
    height: auto;
  }

  /* ✅ Mobile Fix */
@media (max-width: 576px) {
    .form-actions {
        flex-direction: column; /* stack buttons */
    }

    .form-actions button {
        width: 100%; /* full width buttons */
    }
}
}