  body, html {
    margin: 0 !important;
    padding: 0 !important;
    background: #0d0d0d !important;
}
.content-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.top_card {
    width: 40%;
    /* height: 8%; */
    /* margin: 0 0 0 1%; */
    padding-bottom: 10px;
    /* padding: 10px; */
  }

.img-logo{
    width: 50px;
}
/* .paginator_allignment{
    margin: auto;
    text-align: center;
} */
 .stt {
  cursor: pointer;
 }
.rounded-icon {
    border-radius: 23.333px;
    border: 6px solid var(--Primary-100, #FFF1EF);
    background: var(--Primary-200, #FFE3DF);
    margin-bottom: 7px;
  }
  /* .img-fluid {
    width: 124px;
    height: 123px;
    flex-shrink: 0;
    border-radius: 155px;
    background: lightgray 50% / cover no-repeat;
    border: 5px solid var(--Primary-900, #FE806F); 
} */

.img-fluid {
    width: 124px;
    height: 124px; /* Make the height and width equal for a perfect circle */
    flex-shrink: 0;
    border-radius: 50%; /* Use 50% to make the image circular */
    background: lightgray 50% / cover no-repeat;
    border: 5px solid var(--Primary-900, #FE806F); /* Border color */
    position: relative; /* For positioning the camera icon */
}

/* Additional CSS for the camera icon overlay */
.img-fluid::after {
    content: url('camera-icon.png'); /* Replace with the path to your camera icon */
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 24px; /* Adjust size as needed */
    height: 24px; /* Adjust size as needed */
    background: none;
}
.gradient_color {
    background: linear-gradient(90deg, #964483, #de656b, #af586e);
  }

.cancelButton {
    display: flex;
    width: 178px;
    height: 54px;
    padding: 0; /* Remove padding */
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-left: 50%;
    background-color: transparent; /* Make the background transparent to see the SVG */
    color: #FE725F; /* Change text color if needed */
}
#submitButton {
    border-radius: 50px;
    display: flex;
    width: 178px;
    height: 54px;
    padding: 0; /* Remove padding */
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.small-toast {
    max-width: 300px; 
    font-size: 14px;
  }
  .dt-search {
    display: none !important;
  }
  .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
  }
  #image-preview {
  margin-left: 300px;
  position: relative;
  display: inline-block;
}
  #image-input-add {
    display: none; 
}
  #image-input-edit {
    display: none; 
}
.review-card {
      border: none;
      background-color: #f8f9fa;
      margin-bottom: 10px;
  }
  .profile-pic {
      width: 50px;
      height: auto;
      border-radius: 50%;
  }
  .star-rating {
      color: #ffc107;
  }


.pagination {
  display: flex;
  justify-content: end;
}
.page-item.active .page-link {
  background-color: #e9ecef;
  border-color: #ced4da;
  color: #000;
}
.page-link {
  border-radius: 0;
  color: #6c757d;
  border: 1px solid #ced4da;
}
.page-item .page-link:hover {
  background-color: #f8f9fa;
  border-color: #ced4da;
}
.page-item.disabled .page-link {
  color: #6c757d;
  background-color: #fff;
  border-color: #ced4da;
}

.image-thumbnail {
  cursor: pointer;
  max-width: 150px;
  max-height: 150px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.table-img {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
}
.main-img {
  width: 110px; 
  height: 110px;
  border-radius: 50% !important;
}
#customSearch {
  border: 1px solid #D3D3D3;
}
.form-check-input:disabled~.form-check-label, .form-check-input[disabled]~.form-check-label {
  color: #495057 !important;
}

.nav-link.active {
  border-radius: 0px 16px 16px 0px;
  border-left: 3px solid var(--Primary-1000, #FE725F);
  color: #FE725F;
  background: var(--Primary-100, #FFF1EF);
}

.nav-link {
  color: #ffffff;
  margin-top: 10px !important;
}


.nav-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.nav-link.active:hover {
  color:#FE725F;
}

.mainLoader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none; /* Initially hidden */
  z-index: 1051; /* Ensure it's above other elements */
}
/* HTML: <div class="loader"></div> */
.loader {
  --d:22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  color: #25b09b;
  box-shadow: 
    calc(1*var(--d))      calc(0*var(--d))     0 0,
    calc(0.707*var(--d))  calc(0.707*var(--d)) 0 1px,
    calc(0*var(--d))      calc(1*var(--d))     0 2px,
    calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
    calc(-1*var(--d))     calc(0*var(--d))     0 4px,
    calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
    calc(0*var(--d))      calc(-1*var(--d))    0 6px;
  animation: l27 1s infinite steps(8);
}
@keyframes l27 {
  100% {transform: rotate(1turn)}
}

.cke_notification,
.cke_notification_container,
.cke_notification_warning,
.cke_notification_info,
.cke_notification_success,
.cke_notification_error {
    display: none !important;
}
