.wizard_breadcrumb {
  list-style: none;
  display: inline-block;
  /* border: 1px solid #ddd;
  background: #ddd;*/
  border: var(--custom-border);
  background: var(--custom-border);
  border-radius: 5px;
  padding: 0px;
}
.wizard_breadcrumb .icon {
  font-size: 14px;
}
.wizard_breadcrumb li {
  float: left;
}
.wizard_breadcrumb li a {
  font-size: 14px;
  color: #3f4458;
  display: block;
  background: #fff;
  text-decoration: none;
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 10px 0 5px;
  text-align: center;
  margin-right: 23px;
}
.wizard_breadcrumb li:nth-child(even) a {
  background-color: #fff;
}
.wizard_breadcrumb li:nth-child(even) a:before {
  border-color: #fff;
  border-left-color: transparent;
}
.wizard_breadcrumb li:nth-child(even) a:after {
  border-left-color: #fff;
}
.wizard_breadcrumb li:first-child a {
  padding-left: 15px;
  margin-left: 0px;
  border-radius: 4px 0 0 4px;
}
.wizard_breadcrumb li:first-child a:before {
  border: none;
}
.wizard_breadcrumb li:last-child a {
  padding-right: 15px;
  margin-right: 0px;
  border-radius: 0 4px 4px 0;
}
.wizard_breadcrumb li:last-child a:after {
  border: none;
}
.wizard_breadcrumb li a:before,
.wizard_breadcrumb li a:after {
  content: "";
  position: absolute;
  top: 0;
  border: 1px solid #fff;
  border-width: 20px 10px;
  width: 0;
  height: 0;
}
.wizard_breadcrumb li a:before {
  left: -20px;
  border-left-color: transparent;
}
.wizard_breadcrumb li a:after {
  left: 100%;
  border-color: transparent;
  border-left-color: #fff;
}

/* .wizard_breadcrumb li a:hover {
  background-color: #4da1ff;
  color: #fff;
}
.wizard_breadcrumb li a:hover:before {
  border-color: #4da1ff;
  border-left-color: transparent;
  color: #fff;
}
.wizard_breadcrumb li a:hover:after {
  border-left-color: #4da1ff;
  color: #fff;
}
.wizard_breadcrumb li a:active {
  background-color: #4da1ff;
  color: #fff;
}
.wizard_breadcrumb li a:active:before {
  border-color: #4da1ff;
  border-left-color: transparent;
  color: #fff;
}
.wizard_breadcrumb li a:active:after {
  border-left-color: #4da1ff;
  color: #fff;
} */

.stepColor {
  color: var(--secondary-text-color);
  font-family: var(--feature-title-font-family);
  font-size: var(--feature-title-font-size);
  font-weight: var(--feature-title-font-weight);
  padding-top: 1px;
  padding-left: 4px;
}

.activestepColor {
  /*color: #4da1ff !important; */
  color: var(--theme-color);
  font-family: var(--feature-title-font-family);
  font-size: var(--feature-title-font-size);
  font-weight: var(--feature-title-font-weight);
  padding-top: 1px;
  padding-left: 4px;
}

.steps-filled {
  /* color: #52bc60; */
  color: var(--color-green);
  font-size: 20px !important;
  padding-right: 10px;
  padding-top: 10px;
}

.steps-not-filled {
  /* color: #f16c7f; */
  color: var(--color-red);
  font-size: 20px !important;
  padding-right: 10px;
  padding-top: 10px;
}

/* Abstract Response Modal Styles */

.abstract-response-modal {
  max-width: 90vw !important;
  width: 1400px !important;
}

.abstract-response-modal .modal-content {
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom scrollbar for panels */
.abstract-response-modal .bg-white::-webkit-scrollbar,
.abstract-response-modal .bg-light::-webkit-scrollbar {
  width: 8px;
}

.abstract-response-modal .bg-white::-webkit-scrollbar-track,
.abstract-response-modal .bg-light::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.abstract-response-modal .bg-white::-webkit-scrollbar-thumb,
.abstract-response-modal .bg-light::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.abstract-response-modal .bg-white::-webkit-scrollbar-thumb:hover,
.abstract-response-modal .bg-light::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Hover effect for attachment items */
.abstract-response-modal .border.b-radius-10:hover {
  border-color: var(--theme-color) !important;
}

/* Star rating colors */
.text-warning {
  color: #ffc107 !important;
}

/* Badge enhancements */
.abstract-response-modal .badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .abstract-response-modal {
    max-width: 95vw !important;
  }

  .abstract-response-modal .d-flex[style*="flex: 1"] {
    flex-direction: column !important;
  }

  .abstract-response-modal .bg-white[style*="flex: 2"],
  .abstract-response-modal .bg-light[style*="flex: 1"] {
    flex: 1 !important;
    max-width: 100% !important;
  }
}
