@media print {
  .no-print {
    display: none;
  }
}

@keyframes show-toast {
  0% {
    bottom: -100%;
  }
  20% {
    bottom: 100px;
  }
  80% {
    bottom: 100px;
  }
  100% {
    bottom: -100%;
  }
}

.show-notification {
  position: fixed;
  bottom: 100%;
  right: 20px;
  animation-name: show-toast;
  animation-duration: 8s;
  z-index: 100;
}

/* Steps list styling */
.step-item {
  background-color: #f5f6fa !important;
  /* gray background for inactive */
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-color: rgba(
    0,
    0,
    0,
    0.125
  ) !important; /* Default Bootstrap list-group-item border color */
}

.step-item.active {
  background-color: #ffffff !important;
  /* white background for active */
  border-color: rgba(
    0,
    0,
    0,
    0.125
  ) !important; /* Keep the same gray border when active */
}

.step-item:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* Circle styling */
.step-item .media {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1); /* Light gray background for inactive */
}

.step-item .media .icon {
  display: none; /* Hide the icon by default for inactive state */
}

.step-item.active .media {
  background-color: #556ee6; /* Solid blue background for active */
}

.step-item.active .media .icon {
  color: white; /* White icon for active state */
  font-size: 4px; /* Smaller size for active state */
}
.step-item.active .media .icon {
  display: block; /* Show the icon only for active state */
  color: white;
  font-size: 4px;
}

/* Add these styles for disabled steps */
.step-item.disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
}

.step-item.disabled:hover {
  cursor: not-allowed !important;
}

.step-item.disabled a {
  cursor: not-allowed !important;
}

/* Existing loading state styles */
.loading-state {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Article Content Styles */
.article-content {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.75;
  color: #374151;
}

.article-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  margin-bottom: 1.25rem;
  text-align: justify;
  line-height: 1.75;
}

.article-content ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* Add smooth transitions */
.article-content {
  transition: all 0.3s ease-in-out;
}

/* Responsive padding */
@media (max-width: 768px) {
  .article-content {
    padding: 1rem;
  }
}
.bg-warning {
  background-color: #f59e0b;
}

.bg-warning-dark:hover {
  background-color: #d97706;
}
.prose h1:first-child {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700; /* font-bold */
  color: #0f172a; /* text-slate-900 */
  margin-bottom: 1rem; /* mb-4 */
}
.fixed {
  position: fixed;
  z-index: 50;
}

/* Optional: Add transition for shadow on scroll */
.shadow-lg {
  transition: box-shadow 0.3s ease;
}
.article-footer {
  position: fixed;
  bottom: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
  padding: 0.75rem 1rem;
  z-index: 0;
}

/* Responsive footer positioning */
@media (min-width: 992px) {
  .article-footer {
    width: calc(66.66% - 11rem); /* Adjusted width calculation */
    right: 0;
  }
}

@media (max-width: 991px) {
  .article-footer {
    width: 100%;
    right: 0;
    left: 0;
  }
}
.paragraph-footer {
  position: fixed;
  bottom: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
  padding: 0.75rem 1rem;
  z-index: 0;
}
/* Responsive footer positioning */
@media (min-width: 992px) {
  .paragraph-footer {
    width: 100%; /* Adjusted width calculation */
    right: 0;
  }
}

@media (max-width: 1055px) {
  .paragraph-footer {
    width: 100%;
    right: 0;
    left: 0;
  }
}
.pb-24 {
  padding-bottom: 4rem;
}
.left-column {
  width: 33.333%;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid #e5e7eb;
}

.right-column {
  width: 66.666%;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 4rem; /* Space for footer */
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .left-column {
    width: 100%;
    height: auto;
    position: relative;
  }

  .right-column {
    width: 100%;
    margin-left: 0;
  }

  .article-footer {
    width: 100%;
    right: 0;
  }
}

/* Order Page Styles */
.pricing {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
.pricing.border-primary {
  box-shadow: 0 0.25rem 1rem rgba(114, 171, 255, 0.15);
}
.pricing.border-primary:hover {
  box-shadow: 0 0.5rem 2rem rgba(114, 171, 255, 0.2);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.pricing-features li {
  border-bottom: 1px dashed rgba(82, 100, 132, 0.2);
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
}
.pricing-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.btn-block {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
}
.pricing-price .h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #3b82f6, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub-text {
  color: #64748b;
  font-size: 0.9375rem;
}
.card-bordered.pricing {
  border-width: 2px;
  border-radius: 1.25rem;
  border-color: #e2e8f0;
}
.card-bordered.pricing.border-primary {
  border-color: #3b82f6;
}
.badge.bg-primary {
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  background: linear-gradient(45deg, #3b82f6, #2563eb) !important;
}
.card-inner {
  padding: 1.5rem !important;
}
.pricing-body {
  padding: 1rem 0.25rem;
}
.pricing-features {
  padding: 0 0.75rem;
}
.text-primary {
  color: #3b82f6 !important;
}
.btn-primary {
  background: linear-gradient(45deg, #3b82f6, #2563eb);
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(45deg, #2563eb, #1d4ed8);
}
.btn-outline-primary {
  border: 2px solid #3b82f6;
  color: #3b82f6;
}
.btn-outline-primary:hover {
  background: linear-gradient(45deg, #3b82f6, #2563eb);
  border-color: transparent;
  color: #fff;
}
.nk-block-title {
  color: #1e293b;
}
.lead {
  color: #64748b;
  font-size: 1.125rem;
}
.card-text {
  margin: 1.5rem 0 !important;
}
.pricing-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
  border: 1px solid rgba(230, 232, 250, 0.8);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #f0f3ff 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card.active {
  background: linear-gradient(145deg, #f8f9ff 0%, #eef1ff 100%);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.pricing-card.active:hover {
  background: linear-gradient(145deg, #f5f7ff 0%, #e8ecff 100%);
}
.btn-copy {
  background: linear-gradient(45deg, #adaeaf, #6d6f74);
  width: 30px;
  padding: 2px;
  border-radius: 8px;
  border: none;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 10;
}

.card-copy {
  position: relative;
}

.card-header-copy {
  min-height: 50px;
  border-bottom: 1px solid #e5e7eb;
  background-color: #f8f9fa;
}
