@charset "UTF-8";
/* app/assets/stylesheets/dashboard.scss */
/* line 7, app/assets/stylesheets/components/_dashboard_components.scss */
.case-breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 0 24px 24px;
  white-space: nowrap;
}

/* line 15, app/assets/stylesheets/components/_dashboard_components.scss */
.case-breadcrumb__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #637083;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* line 25, app/assets/stylesheets/components/_dashboard_components.scss */
.case-breadcrumb__link:hover {
  color: #344051;
}

/* line 30, app/assets/stylesheets/components/_dashboard_components.scss */
.case-breadcrumb__icon {
  color: #637083;
  flex-shrink: 0;
}

/* line 35, app/assets/stylesheets/components/_dashboard_components.scss */
.case-breadcrumb__chevron {
  color: #637083;
  flex-shrink: 0;
}

/* line 40, app/assets/stylesheets/components/_dashboard_components.scss */
.case-breadcrumb__current {
  font-size: 13px;
  font-weight: 600;
  color: #141c25;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 639px) {
  /* line 7, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-breadcrumb {
    padding: 0 12px 16px;
    gap: 2px;
  }
  /* line 53, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-breadcrumb__link {
    font-size: 12px;
  }
  /* line 57, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-breadcrumb__current {
    font-size: 12px;
    max-width: 150px;
  }
}

/* line 68, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card {
  background: white;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  margin: 0 16px 16px;
  overflow: hidden;
}

/* line 75, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}

/* line 82, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__info {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 88, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__icon-wrapper {
  width: 40px;
  height: 40px;
  background: #e5f2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px white, 0 0 0 3px #e0f2fe;
}

/* line 99, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__icon {
  color: #2e7fd8;
}

/* line 103, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 109, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__title {
  font-size: 18px;
  font-weight: 500;
  color: #141c25;
  margin: 0;
  line-height: 28px;
}

/* line 117, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badges {
  display: flex;
  gap: 4px;
  align-items: center;
}

/* line 123, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

/* line 133, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge svg {
  width: 16px;
  height: 16px;
}

/* line 138, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge--outline {
  border: 1px solid #e4e7ec;
  color: #344051;
  background: white;
}

/* line 144, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #78350f;
}

/* line 149, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge--warning svg {
  color: #f59e0b;
}

/* line 154, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

/* line 159, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge--success svg {
  color: #10b981;
}

/* line 164, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* line 169, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__badge--error svg {
  color: #ef4444;
}

/* line 175, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__actions {
  display: flex;
  gap: 9px;
}

/* line 180, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

/* line 193, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__btn svg {
  width: 16px;
  height: 16px;
}

/* line 198, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__btn--secondary {
  background: white;
  border: 1px solid #e4e7ec;
  color: #344051;
}

/* line 203, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__btn--secondary:hover {
  background: #f9fafb;
  border-color: #ced2da;
}

/* line 209, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__btn--primary {
  background: #2e7fd8;
  border: 1px solid #2e7fd8;
  color: white;
  box-shadow: 0px 1px 2px rgba(20, 28, 37, 0.04);
}

/* line 215, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__btn--primary:hover {
  background: #1e6fc8;
  border-color: #1e6fc8;
  color: white;
}

/* line 223, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__tabs {
  display: flex;
  border-top: 1px solid #e4e7ec;
}

/* line 228, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__tab {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #637083;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

/* line 238, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__tab:hover {
  color: #344051;
}

/* line 242, app/assets/stylesheets/components/_dashboard_components.scss */
.case-header-card__tab--active {
  color: #141c25;
  border-bottom-color: #2e7fd8;
}

@media (max-width: 639px) {
  /* line 68, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card {
    margin: 0 12px 12px;
    border-radius: 12px;
  }
  /* line 255, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__main {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }
  /* line 262, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__info {
    flex: 1;
    min-width: 0;
    gap: 10px;
  }
  /* line 268, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__icon-wrapper {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  /* line 274, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__text {
    min-width: 0;
    flex: 1;
  }
  /* line 279, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__title {
    font-size: 15px;
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* line 287, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__badges {
    flex-wrap: wrap;
  }
  /* line 291, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__badge {
    font-size: 10px;
    padding: 2px 6px;
  }
  /* line 296, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__actions {
    flex-shrink: 0;
    gap: 6px;
  }
  /* line 301, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__btn {
    padding: 6px;
  }
  /* line 305, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__btn .btn-text-responsive {
    display: none !important;
  }
  /* line 309, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__btn svg {
    width: 16px;
    height: 16px;
  }
  /* line 315, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  /* line 320, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__tabs::-webkit-scrollbar {
    display: none;
  }
  /* line 325, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-header-card__tab {
    padding: 10px 16px;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* line 338, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card {
  background: white;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  margin: 24px 24px 16px;
  overflow: hidden;
}

/* line 345, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 20px;
}

/* line 352, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 358, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__icon {
  color: #344051;
}

/* line 362, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #141c25;
  margin: 0;
  line-height: 28px;
}

/* line 370, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 376, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__type-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: #2e7fd8;
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* line 389, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__new-case-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  color: #344051;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 403, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__new-case-btn svg {
  width: 14px;
  height: 14px;
}

/* line 408, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__new-case-btn:hover {
  background: #f9fafb;
  color: #344051;
  border-color: #9ca3af;
}

/* line 415, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__coming-soon {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2e7fd8, #6366f1);
  color: #ffffff;
  border: 1px solid transparent;
  cursor: default;
}

/* line 423, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__coming-soon svg {
  stroke: #ffffff;
}

/* line 427, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__coming-soon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: coming-soon-shimmer 2.5s ease-in-out infinite;
}

/* line 438, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__coming-soon:hover {
  background: linear-gradient(135deg, #2e7fd8, #6366f1);
  color: #ffffff;
  border-color: transparent;
}

/* line 445, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__body {
  padding: 0 24px 24px;
}

/* line 449, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__content {
  position: relative;
  padding-left: 16px;
  border-left: 4px solid #2E7FD8;
}

/* line 455, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #637083;
  margin: 0;
}

/* line 462, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
  border-top: 1px solid #e4e7ec;
  flex-wrap: wrap;
}

/* line 472, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__party {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
  padding: 16px 20px;
  background: white;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
}

/* line 484, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__party-icon {
  color: #637083;
}

/* line 487, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__party-icon svg {
  width: 24px;
  height: 24px;
}

/* line 493, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__party-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 499, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__party-label {
  font-size: 11px;
  font-weight: 600;
  color: #637083;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 507, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__party-name {
  font-size: 15px;
  font-weight: 600;
  color: #141c25;
}

/* line 513, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__separator {
  color: #ced2da;
  flex-shrink: 0;
}

/* line 517, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__separator svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  /* line 513, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__separator {
    display: none;
  }
}

/* line 527, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__claim-value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-width: 160px;
}

/* line 538, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__claim-icon {
  color: #64748b;
}

/* line 541, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__claim-icon svg {
  width: 24px;
  height: 24px;
}

/* line 547, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__claim-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 553, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__claim-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 561, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__claim-amount {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

/* line 567, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__case-stage {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-width: 180px;
}

/* line 578, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__stage-icon {
  color: #64748b;
}

/* line 581, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__stage-icon svg {
  width: 24px;
  height: 24px;
}

/* line 587, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__stage-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 593, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__stage-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 601, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__stage-name {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

@media (max-width: 639px) {
  /* line 338, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card {
    margin: 0 12px 12px;
    border-radius: 12px;
  }
  /* line 614, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  /* line 621, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__title-group {
    gap: 8px;
  }
  /* line 625, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__title {
    font-size: 16px;
    line-height: 24px;
  }
  /* line 630, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }
  /* line 637, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__type-badge {
    padding: 4px 12px;
    font-size: 10px;
  }
  /* line 642, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__new-case-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  /* line 647, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__new-case-btn span:not(.sr-only) {
    display: none;
  }
  /* line 652, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__body {
    padding: 0 16px 16px;
  }
  /* line 656, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__text {
    font-size: 14px;
    line-height: 1.6;
  }
  /* line 661, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__footer {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  /* line 667, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__party, .case-summary-card__claim-value, .case-summary-card__case-stage {
    width: 100%;
    min-width: auto;
    padding: 12px 16px;
  }
  /* line 675, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__party-name, .case-summary-card__claim-amount, .case-summary-card__stage-name {
    font-size: 14px;
  }
}

@media (max-width: 768px) and (min-width: 640px) {
  /* line 683, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__footer {
    flex-direction: column;
  }
  /* line 687, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__party, .case-summary-card__claim-value, .case-summary-card__case-stage {
    width: 100%;
    min-width: auto;
  }
}

/* line 700, app/assets/stylesheets/components/_dashboard_components.scss */
.case-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #2E7FD8 0%, #1e6fc8 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(46, 127, 216, 0.3);
  transition: all 0.3s ease;
}

/* line 714, app/assets/stylesheets/components/_dashboard_components.scss */
.case-type-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(46, 127, 216, 0.4);
}

/* line 720, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-content {
  position: relative;
  padding-left: 1.5rem;
}

/* line 724, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #2E7FD8 0%, #1e6fc8 100%);
  border-radius: 2px;
}

/* line 736, app/assets/stylesheets/components/_dashboard_components.scss */
.summary-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #2d3748;
  margin: 0;
}

/* line 742, app/assets/stylesheets/components/_dashboard_components.scss */
.summary-text p {
  margin-bottom: 1.25rem;
}

/* line 745, app/assets/stylesheets/components/_dashboard_components.scss */
.summary-text p:last-child {
  margin-bottom: 0;
}

/* line 750, app/assets/stylesheets/components/_dashboard_components.scss */
.summary-text strong {
  color: #1a202c;
  font-weight: 700;
  background: linear-gradient(135deg, #2E7FD820 0%, #1e6fc820 100%);
  padding: 0.1em 0.3em;
  border-radius: 3px;
}

@media (min-width: 768px) {
  /* line 736, app/assets/stylesheets/components/_dashboard_components.scss */
  .summary-text {
    font-size: 1.1875rem;
    line-height: 2;
  }
}

/* line 764, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

/* line 776, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* line 781, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party__icon {
  font-size: 2rem;
  filter: grayscale(0.3);
}

/* line 786, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 792, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* line 800, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a202c;
}

/* line 807, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party-divider {
  display: flex;
  align-items: center;
  color: #cbd5e0;
}

/* line 812, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party-divider svg {
  opacity: 0.5;
}

@media (max-width: 768px) {
  /* line 807, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-party-divider {
    display: none;
  }
}

/* line 821, app/assets/stylesheets/components/_dashboard_components.scss */
.case-amount {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(46, 127, 216, 0.3);
  transition: all 0.3s ease;
  margin-left: auto;
}

/* line 832, app/assets/stylesheets/components/_dashboard_components.scss */
.case-amount:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(46, 127, 216, 0.4);
}

/* line 837, app/assets/stylesheets/components/_dashboard_components.scss */
.case-amount__icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* line 842, app/assets/stylesheets/components/_dashboard_components.scss */
.case-amount__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 848, app/assets/stylesheets/components/_dashboard_components.scss */
.case-amount__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* line 856, app/assets/stylesheets/components/_dashboard_components.scss */
.case-amount__value {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  /* line 821, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-amount {
    width: 100%;
    margin-left: 0;
  }
}

/* line 870, app/assets/stylesheets/components/_dashboard_components.scss */
.case-stage {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

/* line 880, app/assets/stylesheets/components/_dashboard_components.scss */
.case-stage:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* line 885, app/assets/stylesheets/components/_dashboard_components.scss */
.case-stage__icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* line 890, app/assets/stylesheets/components/_dashboard_components.scss */
.case-stage__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 896, app/assets/stylesheets/components/_dashboard_components.scss */
.case-stage__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* line 904, app/assets/stylesheets/components/_dashboard_components.scss */
.case-stage__value {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  /* line 870, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-stage {
    width: 100%;
  }
}

/* line 917, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* line 924, app/assets/stylesheets/components/_dashboard_components.scss */
.btn-new-case {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  transition: all 0.2s ease;
}

/* line 938, app/assets/stylesheets/components/_dashboard_components.scss */
.btn-new-case svg {
  width: 14px;
  height: 14px;
}

/* line 943, app/assets/stylesheets/components/_dashboard_components.scss */
.btn-new-case:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  color: white;
}

/* line 949, app/assets/stylesheets/components/_dashboard_components.scss */
.btn-new-case:active {
  transform: translateY(0);
}

/* line 955, app/assets/stylesheets/components/_dashboard_components.scss */
.loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes coming-soon-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* line 978, app/assets/stylesheets/components/_dashboard_components.scss */
.coming-soon-pulse {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2e7fd8, #6366f1) !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
  cursor: default;
}

/* line 986, app/assets/stylesheets/components/_dashboard_components.scss */
.coming-soon-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: coming-soon-shimmer 2.5s ease-in-out infinite;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-text-primary {
  background-color: #141c25;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-text-secondary {
  background-color: #344051;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-text-tertiary {
  background-color: #637083;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-text-quaternary {
  background-color: #ffffff;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-bg-white {
  background-color: #ffffff;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-bg-50 {
  background-color: #f9fafb;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-bg-100 {
  background-color: #f2f4f7;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-border-200 {
  background-color: #e4e7ec;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-border-300 {
  background-color: #ced2da;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-primary-50 {
  background-color: #EFF6FF;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-primary {
  background-color: #2E7FD8;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-primary-600 {
  background-color: #1e6fc8;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-success {
  background-color: #10B981;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-warning {
  background-color: #F59E0B;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-danger {
  background-color: #EF4444;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-danger-600 {
  background-color: #B91C1C;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-yellow {
  background-color: #F59E0B;
}

/* line 164, app/assets/stylesheets/components/../_colors.scss */
.bg-orange {
  background-color: #f97316;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-text-primary {
  color: #141c25;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-text-secondary {
  color: #344051;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-text-tertiary {
  color: #637083;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-text-quaternary {
  color: #ffffff;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-bg-white {
  color: #ffffff;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-bg-50 {
  color: #f9fafb;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-bg-100 {
  color: #f2f4f7;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-border-200 {
  color: #e4e7ec;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-border-300 {
  color: #ced2da;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-primary-50 {
  color: #EFF6FF;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-primary {
  color: #2E7FD8;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-primary-600 {
  color: #1e6fc8;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-success {
  color: #10B981;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-warning {
  color: #F59E0B;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-danger {
  color: #EF4444;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-danger-600 {
  color: #B91C1C;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-yellow {
  color: #F59E0B;
}

/* line 171, app/assets/stylesheets/components/../_colors.scss */
.text-orange {
  color: #f97316;
}

/* line 177, app/assets/stylesheets/components/../_colors.scss */
.border-200 {
  border-color: #e4e7ec;
}

/* line 181, app/assets/stylesheets/components/../_colors.scss */
.border-300 {
  border-color: #ced2da;
}

/* line 189, app/assets/stylesheets/components/../_colors.scss */
.shadow-button {
  box-shadow: 0 1px 2px 0 #141c250a;
}

/* line 175, app/assets/stylesheets/components/../_typography.scss */
.caption-m-regular {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* line 179, app/assets/stylesheets/components/../_typography.scss */
.caption-m-medium {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

/* line 183, app/assets/stylesheets/components/../_typography.scss */
.caption-l-regular {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}

/* line 187, app/assets/stylesheets/components/../_typography.scss */
.caption-l-medium {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

/* line 191, app/assets/stylesheets/components/../_typography.scss */
.caption-l-semibold {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
}

/* line 195, app/assets/stylesheets/components/../_typography.scss */
.paragraph-s-regular {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* line 199, app/assets/stylesheets/components/../_typography.scss */
.paragraph-s-medium {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

/* line 203, app/assets/stylesheets/components/../_typography.scss */
.paragraph-s-semibold {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

/* line 207, app/assets/stylesheets/components/../_typography.scss */
.paragraph-m-medium {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

/* line 211, app/assets/stylesheets/components/../_typography.scss */
.paragraph-m-semibold {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

/* line 215, app/assets/stylesheets/components/../_typography.scss */
.paragraph-l-medium {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

/* line 219, app/assets/stylesheets/components/../_typography.scss */
.subtitle-medium {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

/* line 223, app/assets/stylesheets/components/../_typography.scss */
.subtitle-semibold {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

/* line 227, app/assets/stylesheets/components/../_typography.scss */
.h6-semibold {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

/* line 10, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-container {
  padding: 0 24px 24px;
}

/* line 14, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-section {
  max-width: 100%;
}

/* line 21, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-pills {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: #f2f4f7;
  border-radius: 10px;
  width: fit-content;
}

/* line 30, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #637083;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 43, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* line 49, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-pill:hover {
  color: #344051;
  background: rgba(255, 255, 255, 0.5);
}

/* line 54, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-pill--active {
  color: #141c25;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* line 60, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  font-weight: 600;
  border-radius: 11px;
  background: #e4e7ec;
  color: #344051;
}

/* line 73, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-pill--active .evidence-pill__count {
  background: #2E7FD8;
  color: #ffffff;
}

/* line 83, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-progress {
  margin-top: 16px;
  margin-bottom: 8px;
}

/* line 91, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  color: #1e6fc8;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

/* line 103, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-loading__spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #2E7FD8;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* line 120, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-panel {
  margin-top: 20px;
}

/* line 128, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-assigned__intro {
  padding: 16px 20px;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* line 135, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-assigned__intro p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  line-height: 1.6;
  color: #344051;
  margin: 0;
}

/* line 143, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-assigned__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
}

/* line 151, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-assigned__empty svg {
  color: #CBD5E1;
}

/* line 155, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-assigned__empty p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #637083;
  max-width: 400px;
}

/* line 166, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* line 173, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid #f2f4f7;
}

/* line 182, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__title {
  flex: 1;
  min-width: 0;
}

/* line 187, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__number {
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2E7FD8;
  margin-bottom: 4px;
}

/* line 197, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__header h3 {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #141c25;
  margin: 0;
  line-height: 1.4;
}

/* line 204, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* line 211, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__progress {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #637083;
  white-space: nowrap;
}

/* line 217, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  border-radius: 6px;
  color: #ffffff;
}

/* line 227, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__grade.grade-a {
  background: #10B981;
}

/* line 228, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__grade.grade-b {
  background: #2E7FD8;
}

/* line 229, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__grade.grade-c {
  background: #F59E0B;
}

/* line 230, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__grade.grade-d {
  background: #f97316;
}

/* line 231, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__grade.grade-f {
  background: #94A3B8;
}

/* line 234, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__empty {
  padding: 24px;
}

/* line 237, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__empty p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #94A3B8;
  margin: 0;
}

/* line 248, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criteria-list {
  padding: 0;
}

/* line 252, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row {
  padding: 16px 24px;
  border-bottom: 1px solid #f2f4f7;
  border-left: 3px solid transparent;
}

/* line 257, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row:last-child {
  border-bottom: none;
}

/* line 261, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row.status-validated {
  border-left-color: #10B981;
}

/* line 264, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row.status-clear {
  border-left-color: #2E7FD8;
}

/* line 267, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row.status-unclear {
  border-left-color: #F59E0B;
}

/* line 270, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row.status-unknown {
  border-left-color: #CBD5E1;
}

/* line 274, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

/* line 281, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row__text {
  flex: 1;
  min-width: 0;
}

/* line 285, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row__text p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  line-height: 1.5;
  color: #344051;
  margin: 0;
}

/* line 293, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* line 300, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row__docs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

/* line 311, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

/* line 321, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-status-badge svg {
  width: 12px;
  height: 12px;
}

/* line 326, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-status-badge.em-status-validated {
  background: #D1FAE5;
  color: #065F46;
}

/* line 330, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-status-badge.em-status-clear {
  background: #DBEAFE;
  color: #1E40AF;
}

/* line 334, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-status-badge.em-status-unclear {
  background: #FEF3C7;
  color: #92400E;
}

/* line 338, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-status-badge.em-status-unknown {
  background: #f2f4f7;
  color: #637083;
}

/* line 347, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-evidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 12px;
  white-space: nowrap;
  background: #f9fafb;
  color: #637083;
}

/* line 359, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-evidence-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

/* line 366, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-bar {
  width: 3px;
  border-radius: 1px;
  background: #e4e7ec;
}

/* line 371, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-bar:nth-child(1) {
  height: 5px;
}

/* line 372, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-bar:nth-child(2) {
  height: 8px;
}

/* line 373, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-bar:nth-child(3) {
  height: 11px;
}

/* line 376, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-evidence-strong .em-bar--filled {
  background: #10B981;
}

/* line 377, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-evidence-moderate .em-bar--filled {
  background: #F59E0B;
}

/* line 378, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-evidence-weak .em-bar--filled {
  background: #f97316;
}

/* line 379, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-evidence-none .em-bar--filled {
  background: #CBD5E1;
}

/* line 386, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-doc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #2E7FD8;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s ease;
}

/* line 399, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-doc-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* line 405, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-doc-chip:hover {
  background: #DBEAFE;
  color: #1e6fc8;
}

/* line 414, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail {
  margin-top: 10px;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  overflow: hidden;
}

/* line 420, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 8px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #2E7FD8;
  background: #f9fafb;
  cursor: pointer;
  list-style: none;
}

/* line 432, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__toggle::-webkit-details-marker {
  display: none;
}

/* line 436, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__toggle:hover {
  color: #1e6fc8;
  background: #EFF6FF;
}

/* line 442, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* line 447, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail[open] .evidence-detail__chevron {
  transform: rotate(180deg);
}

/* line 451, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__panel {
  padding: 4px 12px 12px;
  background: #f9fafb;
  border-top: 1px solid #e4e7ec;
}

/* line 457, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__doc {
  padding: 10px 0;
  border-bottom: 1px solid #f2f4f7;
}

/* line 461, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__doc:last-child {
  border-bottom: none;
}

/* line 466, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__doc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

/* line 474, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__doc-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: #344051;
  text-decoration: none;
}

/* line 482, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__doc-title svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #2E7FD8;
}

/* line 489, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__doc-title:hover {
  color: #2E7FD8;
}

/* line 494, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__confidence {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 4px;
  white-space: nowrap;
}

/* line 505, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__confidence--high {
  background: #D1FAE5;
  color: #065F46;
}

/* line 509, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__confidence--medium {
  background: #FEF3C7;
  color: #92400E;
}

/* line 513, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__confidence--low {
  background: #f2f4f7;
  color: #637083;
}

/* line 519, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__reasoning {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  line-height: 1.6;
  color: #344051;
  margin: 0 0 8px;
}

/* line 526, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__quotes {
  margin: 6px 0 8px;
}

/* line 530, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__quote {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  line-height: 1.5;
  color: #637083;
  font-style: italic;
  margin: 4px 0;
  padding: 6px 12px;
  border-left: 3px solid #93C5FD;
  background: #ffffff;
  border-radius: 0 4px 4px 0;
}

/* line 542, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__refs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* line 548, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__ref-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #2E7FD8;
  background: #EFF6FF;
  border-radius: 4px;
}

/* line 562, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-linking-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

/* line 571, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-linking-status--in-progress {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1e6fc8;
}

/* line 577, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-linking-status--completed {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #059669;
}

/* line 583, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-linking-status--failed {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #EF4444;
}

/* line 589, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-linking-status__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}

/* line 599, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-linking-status svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* line 610, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__intro {
  padding: 16px 20px;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* line 617, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__intro p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  line-height: 1.6;
  color: #344051;
  margin: 0;
}

/* line 625, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__complete {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 12px;
}

/* line 634, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__complete svg {
  color: #059669;
  flex-shrink: 0;
}

/* line 639, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__complete h3 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #065F46;
  margin: 0 0 4px;
}

/* line 645, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__complete p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #047857;
  margin: 0;
}

/* line 652, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
}

/* line 660, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__empty svg {
  color: #CBD5E1;
}

/* line 664, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__empty p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #637083;
  max-width: 400px;
}

/* line 675, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 684, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  overflow: hidden;
}

/* line 691, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group[open] .evidence-needed-group__chevron {
  transform: rotate(90deg);
}

/* line 696, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group--complete {
  border-color: #A7F3D0;
  background: #F0FDF4;
}

/* line 700, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group--complete .evidence-needed-group__header {
  background: #F0FDF4;
}

/* line 705, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.15s ease;
}

/* line 715, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__header::-webkit-details-marker {
  display: none;
}

/* line 719, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__header:hover {
  background: #f9fafb;
}

/* line 724, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group--complete .evidence-needed-group__header:hover {
  background: #ECFDF5;
}

/* line 730, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
}

/* line 738, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 743, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__title-row h3 {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #141c25;
  margin: 0;
}

/* line 750, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__chevron {
  flex-shrink: 0;
  color: #94A3B8;
  transition: transform 0.2s ease;
}

/* line 756, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 762, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__count {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #637083;
  white-space: nowrap;
}

/* line 768, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  font-weight: 600;
  border-radius: 16px;
  white-space: nowrap;
}

/* line 778, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__status svg {
  flex-shrink: 0;
}

/* line 782, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__status--complete {
  background: #D1FAE5;
  color: #065F46;
}

/* line 789, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 20px;
}

/* line 799, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card {
  font-family: "Manrope", sans-serif;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
  padding: 16px 20px;
  transition: all 0.15s ease;
}

/* line 807, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* line 812, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group--complete .evidence-needed-card {
  background: #ffffff;
  border-color: #BBF7D0;
}

/* line 817, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__header {
  margin-bottom: 10px;
}

/* line 821, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

/* line 828, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__title-row h4 {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #141c25;
  margin: 0;
  line-height: 1.4;
}

/* line 836, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* line 847, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status svg {
  width: 12px;
  height: 12px;
}

/* line 852, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status--pending {
  background: #FFF7ED;
  color: #C2410C;
}

/* line 856, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status--analyzing {
  background: #FFFBEB;
  color: #B45309;
}

/* line 860, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status--resolved {
  background: #D1FAE5;
  color: #065F46;
}

/* line 864, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status--task {
  background: #DBEAFE;
  color: #1E40AF;
}

/* line 868, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status--witness {
  background: #DBEAFE;
  color: #1e6fc8;
}

/* line 872, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status--dismissed {
  background: #f2f4f7;
  color: #637083;
}

/* line 878, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__description {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  line-height: 1.6;
  color: #344051;
  margin: 0 0 12px;
}

/* line 885, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #2E7FD8;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease;
}

/* line 898, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__learn-more svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* line 904, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__learn-more:hover {
  color: #1e6fc8;
}

/* line 909, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f2f4f7;
}

/* line 917, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__actions--compact {
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
}

/* line 924, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__upload {
  margin-top: 12px;
}

/* line 928, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f2f4f7;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
}

/* line 937, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* line 943, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution--resolved {
  color: #059669;
}

/* line 947, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution--analyzing {
  color: #B45309;
}

/* line 951, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution--dismissed {
  color: #637083;
}

/* line 956, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__analyzing {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2E7FD8;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

/* line 963, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__analyzing .spinner {
  animation: spin 1s linear infinite;
}

/* line 968, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__analysis-failed {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #EF4444;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

/* line 976, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolved-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #059669;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

/* line 984, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__dismissed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #637083;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 4px;
}

/* line 993, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__doc-title {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #637083;
  margin-left: 20px;
  margin-top: 2px;
}

/* line 1000, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution-analysis {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 12px 16px;
}

/* line 1006, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution-analysis p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  line-height: 1.6;
  color: #166534;
  margin: 0;
}

/* line 1013, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution-analysis--dismissed {
  background: #f2f4f7;
  border: 1px solid #e4e7ec;
}

/* line 1017, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution-analysis--dismissed p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  line-height: 1.6;
  color: #344051;
  margin: 0;
}

/* line 1026, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__task-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #2E7FD8;
  text-decoration: none;
}

/* line 1034, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__task-link:hover {
  color: #1e6fc8;
  text-decoration: underline;
}

/* line 1044, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-importance-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 6px;
}

/* line 1051, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-importance-badge.importance-high {
  background: #EFF6FF;
  color: #1e6fc8;
}

/* line 1055, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-importance-badge.importance-moderate {
  background: #F0FDFA;
  color: #0F766E;
}

/* line 1059, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-importance-badge.importance-standard {
  background: #f9fafb;
  color: #344051;
}

/* line 1063, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-importance-badge.importance-optional {
  background: #f9fafb;
  color: #94A3B8;
}

/* line 1072, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

/* line 1084, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* line 1090, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--small {
  font-size: 12px;
  padding: 4px 10px;
}

/* line 1095, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--upload {
  background: #ECFDF5;
  color: #059669;
  border-color: #A7F3D0;
}

/* line 1100, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--upload:hover {
  background: #D1FAE5;
  color: #047857;
}

/* line 1106, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--task {
  background: #EFF6FF;
  color: #2E7FD8;
  border-color: #BFDBFE;
}

/* line 1111, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--task:hover {
  background: #DBEAFE;
  color: #1e6fc8;
}

/* line 1117, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--witness {
  background: #EFF6FF;
  color: #2E7FD8;
  border-color: #BFDBFE;
}

/* line 1122, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--witness:hover {
  background: #DBEAFE;
  color: #1e6fc8;
}

/* line 1128, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--cancel {
  background: #f2f4f7;
  color: #344051;
  border-color: #e4e7ec;
}

/* line 1133, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--cancel:hover {
  background: #e4e7ec;
  color: #141c25;
}

/* line 1139, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--link {
  background: #F5F3FF;
  color: #7C3AED;
  border-color: #DDD6FE;
}

/* line 1144, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--link:hover {
  background: #EDE9FE;
  color: #6D28D9;
}

/* line 1150, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--dismiss {
  background: transparent;
  color: #637083;
  border-color: #ced2da;
}

/* line 1155, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--dismiss:hover {
  background: #f2f4f7;
  color: #344051;
}

/* line 1161, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--dismiss-submit {
  background: #637083;
  color: #ffffff;
  border-color: transparent;
}

/* line 1166, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--dismiss-submit:hover {
  background: #344051;
  color: #ffffff;
}

/* line 1176, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form {
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
}

/* line 1182, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__field {
  margin-bottom: 10px;
}

/* line 1186, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__file-input {
  display: block;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #344051;
}

/* line 1192, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__file-input::file-selector-button {
  padding: 6px 14px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.15s ease;
}

/* line 1204, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__file-input::file-selector-button:hover {
  background: #D1FAE5;
}

/* line 1209, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__text-input {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  background: #ffffff;
  color: #344051;
}

/* line 1219, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__text-input:focus {
  outline: none;
  border-color: #2E7FD8;
  box-shadow: 0 0 0 3px rgba(46, 127, 216, 0.1);
}

/* line 1225, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__text-input::placeholder {
  color: #94A3B8;
}

/* line 1230, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__select-input {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  background: #ffffff;
  color: #344051;
  cursor: pointer;
}

/* line 1241, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__select-input:focus {
  outline: none;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* line 1248, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__buttons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* line 1258, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel {
  margin: 12px 0 4px;
  padding: 16px 20px;
  background: #f9fafb;
  border: 1px solid #e4e7ec;
  border-radius: 10px;
}

/* line 1265, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__section {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f2f4f7;
}

/* line 1271, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__section:first-child {
  padding-top: 0;
}

/* line 1275, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__section:last-of-type {
  border-bottom: none;
}

/* line 1279, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__section h4 {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: #344051;
  margin: 0 0 6px;
}

/* line 1285, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__section p {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  line-height: 1.6;
  color: #344051;
  margin: 0;
}

/* line 1293, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFF6FF;
  border-radius: 6px;
  color: #2E7FD8;
}

/* line 1304, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__icon svg {
  width: 16px;
  height: 16px;
}

/* line 1310, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__evidence-types {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 1318, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__evidence-types li {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #344051;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
}

/* line 1330, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__context {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #637083;
}

/* line 1338, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__context svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* line 1344, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__context strong {
  color: #344051;
}

@media (max-width: 768px) {
  /* line 1354, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-mapping-container {
    padding: 0 16px 16px;
  }
  /* line 1358, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-mapping-pills {
    width: 100%;
  }
  /* line 1362, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-pill {
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
    font-size: 13px;
  }
  /* line 1369, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-fundamental-card__header {
    flex-direction: column;
    padding: 16px;
  }
  /* line 1374, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-criterion-row {
    padding: 12px 16px;
  }
  /* line 1378, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-criterion-row__main {
    flex-direction: column;
    gap: 8px;
  }
  /* line 1383, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-card {
    padding: 16px;
  }
  /* line 1387, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-card__title-row {
    flex-direction: column;
    gap: 8px;
  }
  /* line 1392, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-card__actions {
    flex-direction: column;
  }
  /* line 1396, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-action-btn {
    width: 100%;
    justify-content: center;
  }
  /* line 1401, app/assets/stylesheets/components/_evidence_mapping.scss */
  .gap-detail-panel__section {
    flex-direction: column;
    gap: 8px;
  }
  /* line 1406, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-group__header {
    padding: 14px 16px;
  }
  /* line 1410, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-group__header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  /* line 1416, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-cards {
    padding: 0 16px 16px;
  }
}

/* ===== Mobile Responsive Button Text ===== */
/* Hide button text on mobile, show on sm+ screens */
/* line 7, app/assets/stylesheets/dashboard.scss */
.btn-text-responsive {
  display: none !important;
}

@media (min-width: 640px) {
  /* line 12, app/assets/stylesheets/dashboard.scss */
  .btn-text-responsive {
    display: inline !important;
  }
}

/* ===== Variables ===== */
/* line 18, app/assets/stylesheets/dashboard.scss */
:root {
  --color-primary: #2E7FD8;
  --color-primary-dark: #1e6fc8;
  --color-secondary: #64748B;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;
  --color-orange: #FB923C;
  --color-amber: #F59E0B;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --border-color: #E2E8F0;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-tertiary: #94A3B8;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --sidebar-width: 180px;
}

/* ===== Layout ===== */
/* line 49, app/assets/stylesheets/dashboard.scss */
.dashboard-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--bg-secondary);
  position: relative;
}

/* line 57, app/assets/stylesheets/dashboard.scss */
.dashboard-main {
  flex: 1;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  /* Prevent horizontal scroll from child elements */
}

/* line 64, app/assets/stylesheets/dashboard.scss */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 24px;
  padding: 24px;
  max-width: 1800px;
  margin: 0 auto;
  overflow-x: hidden;
  /* Contain overflow from children */
  box-sizing: border-box;
  width: 100%;
}

/* ===== Subscription Page ===== */
/* line 77, app/assets/stylesheets/dashboard.scss */
.subscription-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

/* line 83, app/assets/stylesheets/dashboard.scss */
.subscription-hero {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

/* line 91, app/assets/stylesheets/dashboard.scss */
.subscription-eyebrow {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 99, app/assets/stylesheets/dashboard.scss */
.subscription-title {
  margin: 0;
  color: var(--text-primary);
  font-size: 36px;
  line-height: 1.12;
  font-weight: 800;
}

/* line 107, app/assets/stylesheets/dashboard.scss */
.subscription-copy {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* line 115, app/assets/stylesheets/dashboard.scss */
.subscription-status-panel,
.subscription-actions {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* line 123, app/assets/stylesheets/dashboard.scss */
.subscription-status-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
}

/* line 130, app/assets/stylesheets/dashboard.scss */
.subscription-status-label {
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 137, app/assets/stylesheets/dashboard.scss */
.subscription-status-panel strong {
  color: var(--text-primary);
  font-size: 20px;
}

/* line 142, app/assets/stylesheets/dashboard.scss */
.subscription-status-panel span:last-child {
  color: var(--text-secondary);
  font-size: 14px;
}

/* line 147, app/assets/stylesheets/dashboard.scss */
.subscription-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
}

/* line 155, app/assets/stylesheets/dashboard.scss */
.subscription-alert--success {
  color: #047857;
  background: #D1FAE5;
}

/* line 160, app/assets/stylesheets/dashboard.scss */
.subscription-alert--error {
  color: #B91C1C;
  background: #FEE2E2;
}

/* line 165, app/assets/stylesheets/dashboard.scss */
.subscription-alert--info {
  color: #1D4ED8;
  background: #DBEAFE;
}

/* line 170, app/assets/stylesheets/dashboard.scss */
.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* line 176, app/assets/stylesheets/dashboard.scss */
.subscription-plan {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
  padding: 22px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* line 187, app/assets/stylesheets/dashboard.scss */
.subscription-plan .subscription-features {
  flex: 1;
}

/* line 191, app/assets/stylesheets/dashboard.scss */
.subscription-plan .subscription-button,
.subscription-plan form:last-child {
  margin-top: auto;
}

/* line 197, app/assets/stylesheets/dashboard.scss */
.subscription-plan--featured {
  border-color: var(--color-primary);
  box-shadow: 0 12px 28px rgba(46, 127, 216, 0.14);
}

/* line 202, app/assets/stylesheets/dashboard.scss */
.subscription-plan--current {
  border-color: var(--color-success);
}

/* line 206, app/assets/stylesheets/dashboard.scss */
.subscription-plan-header {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

/* line 212, app/assets/stylesheets/dashboard.scss */
.subscription-plan-header p {
  min-height: 66px;
}

/* line 219, app/assets/stylesheets/dashboard.scss */
.subscription-plan h2,
.subscription-actions h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 800;
}

/* line 227, app/assets/stylesheets/dashboard.scss */
.subscription-plan p,
.subscription-actions p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

/* line 235, app/assets/stylesheets/dashboard.scss */
.subscription-badge {
  flex: 0 0 auto;
  height: fit-content;
  padding: 4px 8px;
  color: #047857;
  background: #D1FAE5;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 800;
}

/* line 246, app/assets/stylesheets/dashboard.scss */
.subscription-badge--primary {
  color: #1D4ED8;
  background: #DBEAFE;
}

/* line 251, app/assets/stylesheets/dashboard.scss */
.subscription-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* line 257, app/assets/stylesheets/dashboard.scss */
.subscription-price strong {
  color: var(--text-primary);
  font-size: 36px;
  font-weight: 800;
}

/* line 263, app/assets/stylesheets/dashboard.scss */
.subscription-price span,
.subscription-muted {
  color: var(--text-secondary);
  font-size: 14px;
}

/* line 269, app/assets/stylesheets/dashboard.scss */
.subscription-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 278, app/assets/stylesheets/dashboard.scss */
.subscription-features li {
  position: relative;
  padding-left: 22px;
  color: var(--text-primary);
  font-size: 14px;
}

/* line 285, app/assets/stylesheets/dashboard.scss */
.subscription-features li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-success);
}

/* line 296, app/assets/stylesheets/dashboard.scss */
.subscription-button,
.subscription-secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  color: #FFFFFF;
  background: var(--color-primary);
  border: 0;
  border-radius: var(--radius-md);
  font-weight: 800;
  cursor: pointer;
}

/* line 311, app/assets/stylesheets/dashboard.scss */
.subscription-button {
  width: 100%;
  margin-top: auto;
}

/* line 316, app/assets/stylesheets/dashboard.scss */
.subscription-button--disabled {
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  cursor: default;
}

/* line 322, app/assets/stylesheets/dashboard.scss */
.subscription-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 20px;
}

/* line 331, app/assets/stylesheets/dashboard.scss */
.subscription-code-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 337, app/assets/stylesheets/dashboard.scss */
.subscription-code-input {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

@media (max-width: 900px) {
  /* line 345, app/assets/stylesheets/dashboard.scss */
  .subscription-hero,
.subscription-grid,
.subscription-actions {
    grid-template-columns: 1fr;
  }
  /* line 351, app/assets/stylesheets/dashboard.scss */
  .subscription-actions {
    align-items: stretch;
    flex-direction: column;
  }
  /* line 356, app/assets/stylesheets/dashboard.scss */
  .subscription-code-form {
    align-items: stretch;
    flex-direction: column;
  }
}

/* line 362, app/assets/stylesheets/dashboard.scss */
.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  /* Allow content to shrink below natural size */
  overflow-x: hidden;
}

/* line 370, app/assets/stylesheets/dashboard.scss */
.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  /* Allow sidebar to shrink */
  overflow-x: hidden;
}

/* ===== Case Header ===== */
/* line 379, app/assets/stylesheets/dashboard.scss */
.case-header {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 388, app/assets/stylesheets/dashboard.scss */
.case-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* line 394, app/assets/stylesheets/dashboard.scss */
.case-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* line 401, app/assets/stylesheets/dashboard.scss */
.case-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 407, app/assets/stylesheets/dashboard.scss */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* line 414, app/assets/stylesheets/dashboard.scss */
.breadcrumb .separator {
  color: var(--text-tertiary);
}

/* line 418, app/assets/stylesheets/dashboard.scss */
.breadcrumb .current {
  color: var(--text-primary);
  font-weight: 500;
}

/* line 424, app/assets/stylesheets/dashboard.scss */
.case-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* line 431, app/assets/stylesheets/dashboard.scss */
.case-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 437, app/assets/stylesheets/dashboard.scss */
.case-id {
  font-size: 14px;
  color: var(--text-secondary);
}

/* line 442, app/assets/stylesheets/dashboard.scss */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
}

/* line 450, app/assets/stylesheets/dashboard.scss */
.status-badge.status-pending, .status-badge.status-dispute-arose {
  background-color: #FEF3C7;
  color: #92400E;
}

/* line 456, app/assets/stylesheets/dashboard.scss */
.status-badge.status-active, .status-badge.status-in-progress, .status-badge.status-dispute-communicated, .status-badge.status-response-received {
  background-color: #DBEAFE;
  color: #1E40AF;
}

/* line 464, app/assets/stylesheets/dashboard.scss */
.status-badge.status-completed, .status-badge.status-final-hearing {
  background-color: #D1FAE5;
  color: #065F46;
}

/* line 470, app/assets/stylesheets/dashboard.scss */
.status-badge.status-mediation-proposed, .status-badge.status-mediation-undertaken {
  background-color: #FEF3C7;
  color: #92400E;
}

/* line 476, app/assets/stylesheets/dashboard.scss */
.status-badge.status-litigation-commenced, .status-badge.status-preliminary-hearing {
  background-color: #FEE2E2;
  color: #991B1B;
}

/* line 483, app/assets/stylesheets/dashboard.scss */
.case-header-actions {
  display: flex;
  gap: 12px;
}

/* ===== Buttons ===== */
/* line 489, app/assets/stylesheets/dashboard.scss */
.btn-primary,
.btn-secondary,
.btn-primary-outline,
.btn-primary-sm,
.btn-upload,
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

/* line 507, app/assets/stylesheets/dashboard.scss */
.btn-primary svg,
.btn-secondary svg,
.btn-primary-outline svg,
.btn-primary-sm svg,
.btn-upload svg,
.btn-link svg {
  width: 16px;
  height: 16px;
}

/* line 513, app/assets/stylesheets/dashboard.scss */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

/* line 517, app/assets/stylesheets/dashboard.scss */
.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

/* line 522, app/assets/stylesheets/dashboard.scss */
.btn-secondary {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

/* line 526, app/assets/stylesheets/dashboard.scss */
.btn-secondary:hover {
  background-color: #E2E8F0;
}

/* line 531, app/assets/stylesheets/dashboard.scss */
.btn-success {
  background-color: var(--color-success);
  color: white;
}

/* line 535, app/assets/stylesheets/dashboard.scss */
.btn-success:hover {
  background-color: #059669;
}

/* line 539, app/assets/stylesheets/dashboard.scss */
.btn-success:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 545, app/assets/stylesheets/dashboard.scss */
.btn-primary-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

/* line 550, app/assets/stylesheets/dashboard.scss */
.btn-primary-outline:hover {
  background-color: #EFF6FF;
}

/* line 555, app/assets/stylesheets/dashboard.scss */
.btn-primary-sm {
  padding: 6px 12px;
  font-size: 13px;
  background-color: var(--color-primary);
  color: white;
}

/* line 562, app/assets/stylesheets/dashboard.scss */
.btn-upload {
  width: 100%;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
  padding: 12px;
}

/* line 570, app/assets/stylesheets/dashboard.scss */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 0;
  background: none;
  border: none;
}

/* line 582, app/assets/stylesheets/dashboard.scss */
.btn-link:hover {
  text-decoration: underline;
}

/* ===== Tab Navigation ===== */
/* line 588, app/assets/stylesheets/dashboard.scss */
.tab-nav {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 0 24px;
  display: flex;
  gap: 32px;
}

/* line 596, app/assets/stylesheets/dashboard.scss */
.tab-link {
  padding: 16px 0;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

/* line 605, app/assets/stylesheets/dashboard.scss */
.tab-link:hover {
  color: var(--text-primary);
}

/* line 609, app/assets/stylesheets/dashboard.scss */
.tab-link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ===== Metrics Section ===== */
/* line 616, app/assets/stylesheets/dashboard.scss */
.metrics-section {
  width: 100%;
}

/* line 619, app/assets/stylesheets/dashboard.scss */
.metrics-section .metrics-grid {
  display: flex;
  gap: 16px;
}

@media (max-width: 767px) {
  /* line 619, app/assets/stylesheets/dashboard.scss */
  .metrics-section .metrics-grid {
    flex-wrap: nowrap;
  }
  /* line 627, app/assets/stylesheets/dashboard.scss */
  .metrics-section .metrics-grid .metric-card {
    min-width: 200px;
    flex-shrink: 0;
  }
}

@media (min-width: 768px) {
  /* line 619, app/assets/stylesheets/dashboard.scss */
  .metrics-section .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* line 642, app/assets/stylesheets/dashboard.scss */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* line 646, app/assets/stylesheets/dashboard.scss */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* line 651, app/assets/stylesheets/dashboard.scss */
.metric-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

/* line 658, app/assets/stylesheets/dashboard.scss */
.metric-card--horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 665, app/assets/stylesheets/dashboard.scss */
.metric-card--savings {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 671, app/assets/stylesheets/dashboard.scss */
.metric-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 678, app/assets/stylesheets/dashboard.scss */
.metric-card__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

/* line 685, app/assets/stylesheets/dashboard.scss */
.metric-card__stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 691, app/assets/stylesheets/dashboard.scss */
.metric-card__value {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* line 697, app/assets/stylesheets/dashboard.scss */
.metric-card__value--success {
  font-size: 24px;
  color: var(--color-success);
}

/* line 703, app/assets/stylesheets/dashboard.scss */
.metric-card__description {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.3;
}

/* line 710, app/assets/stylesheets/dashboard.scss */
.metric-card__action-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 0;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.15s ease;
}

/* line 724, app/assets/stylesheets/dashboard.scss */
.metric-card__action-link:hover {
  color: var(--color-primary-dark, #1e6bb8);
  text-decoration: underline;
}

/* line 729, app/assets/stylesheets/dashboard.scss */
.metric-card__action-link svg {
  flex-shrink: 0;
}

/* line 734, app/assets/stylesheets/dashboard.scss */
.metric-card__chart {
  flex-shrink: 0;
}

/* line 738, app/assets/stylesheets/dashboard.scss */
.metric-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 8px;
}

/* line 748, app/assets/stylesheets/dashboard.scss */
.metric-card__locked {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 12px 8px;
  gap: 6px;
}

/* line 758, app/assets/stylesheets/dashboard.scss */
.metric-card__locked .metric-card__title {
  color: var(--text-muted);
  font-size: 13px;
}

/* line 764, app/assets/stylesheets/dashboard.scss */
.metric-card__lock-icon {
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 2px;
}

/* line 770, app/assets/stylesheets/dashboard.scss */
.metric-card__locked-text {
  font-size: 11px;
  color: var(--text-tertiary);
  margin: 0;
}

/* line 777, app/assets/stylesheets/dashboard.scss */
.metric-card__cta {
  margin: 4px 0 0 0;
  font-size: 12px;
}

/* line 782, app/assets/stylesheets/dashboard.scss */
.metric-card__cta-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

/* line 788, app/assets/stylesheets/dashboard.scss */
.metric-card__cta-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* line 794, app/assets/stylesheets/dashboard.scss */
.metric-card__cta-text {
  color: var(--text-secondary);
  font-weight: 500;
}

/* line 799, app/assets/stylesheets/dashboard.scss */
.metric-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* line 805, app/assets/stylesheets/dashboard.scss */
.metric-card__total {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

/* line 812, app/assets/stylesheets/dashboard.scss */
.circular-progress {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
}

/* line 818, app/assets/stylesheets/dashboard.scss */
.circular-progress--small {
  width: 80px;
  height: 80px;
  margin: 0;
}

/* line 826, app/assets/stylesheets/dashboard.scss */
.progress-percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #2E7FD8;
}

/* line 837, app/assets/stylesheets/dashboard.scss */
.progress-ring {
  transform: rotate(-90deg);
}

/* line 841, app/assets/stylesheets/dashboard.scss */
.progress-ring-bg {
  fill: none;
  stroke: var(--bg-tertiary);
  stroke-width: 6;
}

/* line 847, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 213.628;
  stroke-dashoffset: calc(213.628 - (213.628 * var(--progress)) / 100);
  transition: stroke-dashoffset 0.5s ease;
}

/* line 856, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill.progress-orange {
  stroke: #2E7FD8;
}

/* line 860, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill.progress-amber {
  stroke: #2E7FD8;
}

/* line 864, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill.progress-yellow {
  stroke: #2E7FD8;
}

/* line 868, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill.progress-cyan {
  stroke: #2E7FD8;
}

/* line 873, app/assets/stylesheets/dashboard.scss */
.progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 879, app/assets/stylesheets/dashboard.scss */
.progress-value .value {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
}

/* line 886, app/assets/stylesheets/dashboard.scss */
.metric-description {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* line 892, app/assets/stylesheets/dashboard.scss */
.savings-display {
  padding: 20px 0;
}

/* line 896, app/assets/stylesheets/dashboard.scss */
.savings-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-success);
  margin-bottom: 8px;
}

/* line 903, app/assets/stylesheets/dashboard.scss */
.savings-breakdown {
  margin-top: 12px;
}

/* line 906, app/assets/stylesheets/dashboard.scss */
.savings-breakdown .total-estimate {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== Strategic Advice Section ===== */
/* line 913, app/assets/stylesheets/dashboard.scss */
.strategic-advice-section {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* line 921, app/assets/stylesheets/dashboard.scss */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* line 927, app/assets/stylesheets/dashboard.scss */
.section-header .header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 933, app/assets/stylesheets/dashboard.scss */
.section-header h2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

/* line 941, app/assets/stylesheets/dashboard.scss */
.btn-refresh-analysis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 955, app/assets/stylesheets/dashboard.scss */
.btn-refresh-analysis .icon {
  width: 16px;
  height: 16px;
}

/* line 960, app/assets/stylesheets/dashboard.scss */
.btn-refresh-analysis:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* line 966, app/assets/stylesheets/dashboard.scss */
.btn-refresh-analysis:active {
  transform: scale(0.98);
}

/* line 971, app/assets/stylesheets/dashboard.scss */
.progress-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 977, app/assets/stylesheets/dashboard.scss */
.progress-bar {
  width: 200px;
  max-width: 400px;
  height: 6px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

@media (min-width: 1200px) {
  /* line 977, app/assets/stylesheets/dashboard.scss */
  .progress-bar {
    width: 300px;
  }
}

/* line 990, app/assets/stylesheets/dashboard.scss */
.progress-fill {
  height: 100%;
  background-color: #2e7fd8;
  transition: width 0.5s ease;
}

/* line 996, app/assets/stylesheets/dashboard.scss */
.progress-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

/* line 1002, app/assets/stylesheets/dashboard.scss */
.strategic-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* line 1007, app/assets/stylesheets/dashboard.scss */
.strategic-steps--horizontal {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* line 1012, app/assets/stylesheets/dashboard.scss */
.strategic-steps .empty-state {
  grid-column: 1 / -1;
  width: 100%;
}

@media (max-width: 1200px) {
  /* line 1002, app/assets/stylesheets/dashboard.scss */
  .strategic-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* line 1002, app/assets/stylesheets/dashboard.scss */
  .strategic-steps {
    grid-template-columns: 1fr;
  }
}

/* line 1027, app/assets/stylesheets/dashboard.scss */
.step-card-v2 {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: all 0.2s;
}

/* line 1034, app/assets/stylesheets/dashboard.scss */
.step-card-v2--completed {
  background-color: var(--bg-secondary);
  border-color: #2e7fd8;
}

/* line 1039, app/assets/stylesheets/dashboard.scss */
.step-card-v2--current {
  border-color: #2e7fd8;
}

/* line 1043, app/assets/stylesheets/dashboard.scss */
.step-card-v2__main {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* line 1049, app/assets/stylesheets/dashboard.scss */
.step-card-v2__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 1056, app/assets/stylesheets/dashboard.scss */
.step-card-v2__label {
  font-size: 13px;
  font-weight: 500;
  color: #2e7fd8;
}

/* line 1062, app/assets/stylesheets/dashboard.scss */
.step-card-v2__description {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* line 1069, app/assets/stylesheets/dashboard.scss */
.step-card-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #2e7fd8;
  text-decoration: none;
  margin-top: 4px;
}

/* line 1079, app/assets/stylesheets/dashboard.scss */
.step-card-v2__link:hover {
  text-decoration: underline;
}

/* line 1083, app/assets/stylesheets/dashboard.scss */
.step-card-v2__link svg {
  width: 16px;
  height: 16px;
}

/* line 1089, app/assets/stylesheets/dashboard.scss */
.step-card-v2__checkbox {
  flex-shrink: 0;
}

/* line 1094, app/assets/stylesheets/dashboard.scss */
.checkbox-checked {
  width: 20px;
  height: 20px;
  background-color: #2e7fd8;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1104, app/assets/stylesheets/dashboard.scss */
.checkbox-unchecked {
  width: 20px;
  height: 20px;
  background-color: var(--bg-primary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
}

/* line 1113, app/assets/stylesheets/dashboard.scss */
.step-card {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.2s;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* line 1122, app/assets/stylesheets/dashboard.scss */
.step-card.completed {
  background-color: #F0FDF4;
  border-color: var(--color-success);
}

/* line 1126, app/assets/stylesheets/dashboard.scss */
.step-card.completed .step-number-badge {
  background-color: var(--color-success);
  color: white;
}

/* line 1132, app/assets/stylesheets/dashboard.scss */
.step-card.current {
  border-color: var(--color-primary);
  background-color: #EFF6FF;
}

/* line 1138, app/assets/stylesheets/dashboard.scss */
.step-number-badge {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-md);
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 1154, app/assets/stylesheets/dashboard.scss */
.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* line 1161, app/assets/stylesheets/dashboard.scss */
.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

/* line 1169, app/assets/stylesheets/dashboard.scss */
.step-description {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* line 1176, app/assets/stylesheets/dashboard.scss */
.step-actions {
  margin-top: 8px;
}

/* ===== Accordion Sections ===== */
/* line 1181, app/assets/stylesheets/dashboard.scss */
.case-analysis-section,
.case-fundamentals-section {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* line 1189, app/assets/stylesheets/dashboard.scss */
.case-analysis-section .section-header,
.case-fundamentals-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

/* line 1197, app/assets/stylesheets/dashboard.scss */
.case-analysis-section .section-header .header-actions,
.case-fundamentals-section .section-header .header-actions {
  display: flex;
  gap: 8px;
}

/* line 1205, app/assets/stylesheets/dashboard.scss */
.btn-generate-analysis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 1218, app/assets/stylesheets/dashboard.scss */
.btn-generate-analysis .sparkle-icon {
  width: 16px;
  height: 16px;
}

/* line 1223, app/assets/stylesheets/dashboard.scss */
.btn-generate-analysis .btn-gradient-text {
  background: linear-gradient(135deg, #2E7FD8 0%, #1e6fc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 1230, app/assets/stylesheets/dashboard.scss */
.btn-generate-analysis:hover {
  background-color: var(--bg-tertiary);
  border-color: #2e7fd8;
}

/* line 1237, app/assets/stylesheets/dashboard.scss */
.analysis-content-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 1243, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

/* line 1247, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* line 1252, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

/* line 1259, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2__content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
}

/* line 1264, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2__content p {
  margin-bottom: 12px;
}

/* line 1267, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2__content p:last-child {
  margin-bottom: 0;
}

/* line 1272, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2__content ul, .analysis-item-v2__content ol {
  margin: 12px 0;
  padding-left: 24px;
}

/* line 1276, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2__content ul li, .analysis-item-v2__content ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* line 1285, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked {
  padding: 40px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.05) 0%, rgba(148, 163, 184, 0.1) 100%);
  border-radius: var(--radius-md);
  border: 2px dashed var(--border-color);
}

/* line 1292, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-content {
  max-width: 400px;
  margin: 0 auto;
}

/* line 1297, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--bg-secondary);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--text-muted);
}

/* line 1308, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-icon svg {
  opacity: 0.6;
}

/* line 1313, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* line 1320, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* line 1327, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-progress {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-color);
}

/* line 1333, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-progress .progress-text {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

/* line 1341, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-progress .progress-bar {
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

/* line 1347, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* line 1358, app/assets/stylesheets/dashboard.scss */
.case-analysis-generating {
  padding: 40px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(46, 127, 216, 0.05) 0%, rgba(46, 127, 216, 0.1) 100%);
  border-radius: var(--radius-md);
  border: 2px solid var(--primary-color);
}

/* line 1365, app/assets/stylesheets/dashboard.scss */
.case-analysis-generating .generating-content {
  max-width: 400px;
  margin: 0 auto;
}

/* line 1370, app/assets/stylesheets/dashboard.scss */
.case-analysis-generating .generating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--bg-secondary);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* line 1381, app/assets/stylesheets/dashboard.scss */
.case-analysis-generating .generating-icon svg {
  opacity: 0.8;
}

/* line 1386, app/assets/stylesheets/dashboard.scss */
.case-analysis-generating h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* line 1393, app/assets/stylesheets/dashboard.scss */
.case-analysis-generating p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* line 1400, app/assets/stylesheets/dashboard.scss */
.analysis-accordion,
.fundamentals-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 1407, app/assets/stylesheets/dashboard.scss */
.analysis-item,
.fundamental-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* line 1414, app/assets/stylesheets/dashboard.scss */
.analysis-item[open] .chevron,
.fundamental-item[open] .chevron {
  transform: rotate(180deg);
}

/* line 1420, app/assets/stylesheets/dashboard.scss */
.analysis-header,
.fundamental-header {
  padding: 16px 20px;
  background-color: var(--bg-tertiary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: background-color 0.2s;
}

/* line 1431, app/assets/stylesheets/dashboard.scss */
.analysis-header:hover,
.fundamental-header:hover {
  background-color: #E2E8F0;
}

/* line 1435, app/assets/stylesheets/dashboard.scss */
.analysis-header .header-content,
.fundamental-header .header-content {
  display: flex;
  align-items: center;
  flex: 1;
}

/* line 1441, app/assets/stylesheets/dashboard.scss */
.analysis-header .header-actions,
.fundamental-header .header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 1447, app/assets/stylesheets/dashboard.scss */
.analysis-header .item-number,
.fundamental-header .item-number {
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 12px;
}

/* line 1453, app/assets/stylesheets/dashboard.scss */
.analysis-header h3,
.fundamental-header h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

/* line 1461, app/assets/stylesheets/dashboard.scss */
.analysis-header .chevron,
.fundamental-header .chevron {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: transform 0.2s;
  flex-shrink: 0;
}

/* line 1470, app/assets/stylesheets/dashboard.scss */
.btn-question-analysis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

/* line 1483, app/assets/stylesheets/dashboard.scss */
.btn-question-analysis svg {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

/* line 1488, app/assets/stylesheets/dashboard.scss */
.btn-question-analysis:hover {
  background-color: var(--bg-primary);
  border-color: var(--color-primary);
}

/* line 1492, app/assets/stylesheets/dashboard.scss */
.btn-question-analysis:hover svg {
  color: var(--color-primary);
}

/* line 1497, app/assets/stylesheets/dashboard.scss */
.btn-question-analysis:active {
  transform: scale(0.95);
}

/* line 1502, app/assets/stylesheets/dashboard.scss */
.analysis-content,
.fundamental-content {
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* line 1509, app/assets/stylesheets/dashboard.scss */
.analysis-content h4,
.fundamental-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 16px 0 8px 0;
}

/* line 1517, app/assets/stylesheets/dashboard.scss */
.analysis-content .eval-heading-1,
.fundamental-content .eval-heading-1 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

/* line 1526, app/assets/stylesheets/dashboard.scss */
.analysis-content .eval-heading-2,
.fundamental-content .eval-heading-2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 16px 0 10px 0;
}

/* line 1533, app/assets/stylesheets/dashboard.scss */
.analysis-content .eval-heading-3,
.fundamental-content .eval-heading-3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 14px 0 8px 0;
}

/* line 1541, app/assets/stylesheets/dashboard.scss */
.analysis-content p,
.fundamental-content p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--text-primary);
}

/* line 1546, app/assets/stylesheets/dashboard.scss */
.analysis-content p:last-child,
.fundamental-content p:last-child {
  margin-bottom: 0;
}

/* line 1552, app/assets/stylesheets/dashboard.scss */
.analysis-content strong,
.fundamental-content strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* line 1557, app/assets/stylesheets/dashboard.scss */
.analysis-content em,
.fundamental-content em {
  font-style: italic;
  color: var(--text-secondary);
}

/* line 1562, app/assets/stylesheets/dashboard.scss */
.analysis-content code,
.fundamental-content code {
  background-color: var(--bg-tertiary);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 13px;
  color: var(--color-primary);
}

/* line 1572, app/assets/stylesheets/dashboard.scss */
.analysis-content a,
.fundamental-content a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

/* line 1578, app/assets/stylesheets/dashboard.scss */
.analysis-content a:hover,
.fundamental-content a:hover {
  border-bottom-color: var(--color-primary);
}

/* line 1584, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list,
.fundamental-content .evaluation-list {
  list-style: none;
  margin: 12px 0;
  padding-left: 0;
}

/* line 1589, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list li,
.fundamental-content .evaluation-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text-primary);
  font-size: 14px;
}

/* line 1597, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list li::before,
.fundamental-content .evaluation-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 14px;
}

/* line 1607, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list li strong,
.fundamental-content .evaluation-list li strong {
  font-size: inherit;
  font-weight: 600;
}

/* line 1613, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list li ul,
.fundamental-content .evaluation-list li ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 1617, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list li ul li::before,
.fundamental-content .evaluation-list li ul li::before {
  content: '◦';
  font-size: 14px;
}

/* line 1625, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list--numbered,
.fundamental-content .evaluation-list--numbered {
  list-style: none;
  counter-reset: eval-counter;
}

/* line 1629, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list--numbered li,
.fundamental-content .evaluation-list--numbered li {
  counter-increment: eval-counter;
  padding-left: 32px;
  margin-bottom: 16px;
}

/* line 1634, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list--numbered li::before,
.fundamental-content .evaluation-list--numbered li::before {
  content: counter(eval-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
}

/* line 1647, app/assets/stylesheets/dashboard.scss */
.analysis-content p,
.fundamental-content p {
  font-size: 14px;
  line-height: 1.7;
  margin: 12px 0;
}

/* line 1652, app/assets/stylesheets/dashboard.scss */
.analysis-content p strong,
.fundamental-content p strong {
  font-size: inherit;
  font-weight: 600;
}

/* line 1659, app/assets/stylesheets/dashboard.scss */
.criteria-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

/* line 1664, app/assets/stylesheets/dashboard.scss */
.criteria-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

/* line 1669, app/assets/stylesheets/dashboard.scss */
.criteria-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--color-primary);
  font-weight: bold;
}

/* line 1679, app/assets/stylesheets/dashboard.scss */
.case-law-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

/* line 1686, app/assets/stylesheets/dashboard.scss */
.case-law-item {
  padding: 16px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-md);
}

/* line 1692, app/assets/stylesheets/dashboard.scss */
.case-law-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

/* line 1699, app/assets/stylesheets/dashboard.scss */
.case-law-citation {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0 0 8px 0;
}

/* line 1706, app/assets/stylesheets/dashboard.scss */
.case-law-relevance {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* line 1712, app/assets/stylesheets/dashboard.scss */
.no-case-law {
  padding: 16px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===== Sidebar Widgets ===== */
/* line 1722, app/assets/stylesheets/dashboard.scss */
.task-manager-widget,
.case-history-widget,
.document-evaluation-widget {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

/* line 1731, app/assets/stylesheets/dashboard.scss */
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

/* line 1737, app/assets/stylesheets/dashboard.scss */
.widget-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* line 1745, app/assets/stylesheets/dashboard.scss */
.view-all-link {
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

/* line 1751, app/assets/stylesheets/dashboard.scss */
.view-all-link:hover {
  text-decoration: underline;
}

/* line 1756, app/assets/stylesheets/dashboard.scss */
.task-list,
.document-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 1763, app/assets/stylesheets/dashboard.scss */
.task-item,
.document-item {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

/* line 1773, app/assets/stylesheets/dashboard.scss */
.task-item:hover,
.document-item:hover {
  border-color: var(--color-primary);
  background-color: var(--bg-secondary);
}

/* line 1778, app/assets/stylesheets/dashboard.scss */
.task-item.completed,
.document-item.completed {
  opacity: 0.6;
}

/* line 1783, app/assets/stylesheets/dashboard.scss */
.task-info,
.document-info {
  flex: 1;
  min-width: 0;
}

/* line 1789, app/assets/stylesheets/dashboard.scss */
.task-title,
.document-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 1800, app/assets/stylesheets/dashboard.scss */
.task-date,
.document-date {
  font-size: 12px;
  color: var(--text-secondary);
}

/* line 1806, app/assets/stylesheets/dashboard.scss */
.task-actions,
.document-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* line 1814, app/assets/stylesheets/dashboard.scss */
.task-action-btn,
.document-action-btn {
  padding: 6px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: none;
  border: none;
}

/* line 1826, app/assets/stylesheets/dashboard.scss */
.task-action-btn:hover,
.document-action-btn:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

/* line 1832, app/assets/stylesheets/dashboard.scss */
.check-icon {
  flex-shrink: 0;
}

/* line 1837, app/assets/stylesheets/dashboard.scss */
.task-complete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

/* line 1851, app/assets/stylesheets/dashboard.scss */
.task-complete-btn svg {
  color: white;
}

/* line 1855, app/assets/stylesheets/dashboard.scss */
.task-complete-btn:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.05);
}

/* line 1860, app/assets/stylesheets/dashboard.scss */
.task-complete-btn:active {
  transform: scale(0.95);
}

/* line 1866, app/assets/stylesheets/dashboard.scss */
.task-complete-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-success);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

/* line 1876, app/assets/stylesheets/dashboard.scss */
.task-complete-badge svg {
  color: white;
}

@media (max-width: 400px) {
  /* line 1882, app/assets/stylesheets/dashboard.scss */
  .task-action-text {
    display: none;
  }
}

/* ===== Timeline ===== */
/* line 1889, app/assets/stylesheets/dashboard.scss */
.timeline {
  position: relative;
  padding-left: 32px;
}

/* line 1893, app/assets/stylesheets/dashboard.scss */
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
}

/* line 1904, app/assets/stylesheets/dashboard.scss */
.timeline-item {
  position: relative;
  padding-bottom: 24px;
}

/* line 1908, app/assets/stylesheets/dashboard.scss */
.timeline-item:last-child {
  padding-bottom: 0;
}

/* line 1913, app/assets/stylesheets/dashboard.scss */
.timeline-marker {
  position: absolute;
  left: -26px;
  top: 4px;
}

/* line 1919, app/assets/stylesheets/dashboard.scss */
.marker-dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background-color: var(--bg-tertiary);
  border: 2px solid var(--border-color);
}

/* line 1926, app/assets/stylesheets/dashboard.scss */
.marker-dot.completed {
  background-color: var(--color-success);
  border-color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1934, app/assets/stylesheets/dashboard.scss */
.marker-dot.scheduled {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* line 1940, app/assets/stylesheets/dashboard.scss */
.timeline-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* line 1947, app/assets/stylesheets/dashboard.scss */
.event-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 1958, app/assets/stylesheets/dashboard.scss */
.event-status {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* line 1964, app/assets/stylesheets/dashboard.scss */
.event-status.completed {
  background-color: #D1FAE5;
  color: #065F46;
}

/* line 1969, app/assets/stylesheets/dashboard.scss */
.event-status.scheduled {
  background-color: #DBEAFE;
  color: #1E40AF;
}

/* ===== Document Icons ===== */
/* line 1976, app/assets/stylesheets/dashboard.scss */
.document-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: var(--bg-tertiary);
  flex-shrink: 0;
  color: var(--text-secondary);
}

/* ===== Upload Section ===== */
/* line 1989, app/assets/stylesheets/dashboard.scss */
.upload-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* ===== Empty States ===== */
/* line 1996, app/assets/stylesheets/dashboard.scss */
.empty-state {
  text-align: center;
  padding: 32px 16px;
}

/* line 2000, app/assets/stylesheets/dashboard.scss */
.empty-state svg {
  display: block;
  margin: 0 auto 16px auto;
}

/* line 2005, app/assets/stylesheets/dashboard.scss */
.empty-state p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 16px 0;
}

/* ===== Sidebar Navigation Styles ===== */
/* line 2013, app/assets/stylesheets/dashboard.scss */
.sidebar-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 16px;
  max-width: 100%;
  overflow-x: hidden;
}

/* line 2022, app/assets/stylesheets/dashboard.scss */
.sidebar-logo {
  padding: 0 4px;
}

/* line 2025, app/assets/stylesheets/dashboard.scss */
.sidebar-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
}

/* line 2034, app/assets/stylesheets/dashboard.scss */
.sidebar-logo .logo-link svg {
  flex-shrink: 0;
}

/* line 2039, app/assets/stylesheets/dashboard.scss */
.sidebar-logo .logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 2046, app/assets/stylesheets/dashboard.scss */
.sidebar-nav {
  flex: 1;
}

/* line 2050, app/assets/stylesheets/dashboard.scss */
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 2056, app/assets/stylesheets/dashboard.scss */
.nav-item {
  margin-bottom: 4px;
}

/* line 2060, app/assets/stylesheets/dashboard.scss */
.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px;
  white-space: nowrap;
}

/* line 2072, app/assets/stylesheets/dashboard.scss */
.nav-link:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

/* line 2077, app/assets/stylesheets/dashboard.scss */
.nav-link.active {
  background-color: #EFF6FF;
  color: var(--color-primary);
}

/* line 2082, app/assets/stylesheets/dashboard.scss */
.nav-link .nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* line 2088, app/assets/stylesheets/dashboard.scss */
.nav-link span {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 2094, app/assets/stylesheets/dashboard.scss */
.sidebar-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 2102, app/assets/stylesheets/dashboard.scss */
.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

/* line 2119, app/assets/stylesheets/dashboard.scss */
.footer-link:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

/* line 2124, app/assets/stylesheets/dashboard.scss */
.footer-link .footer-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* line 2130, app/assets/stylesheets/dashboard.scss */
.footer-link span {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  /* line 2138, app/assets/stylesheets/dashboard.scss */
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  /* line 2142, app/assets/stylesheets/dashboard.scss */
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* line 2148, app/assets/stylesheets/dashboard.scss */
  .case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  /* line 2154, app/assets/stylesheets/dashboard.scss */
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* line 2161, app/assets/stylesheets/dashboard.scss */
.analysis-question-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 2179, app/assets/stylesheets/dashboard.scss */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* line 2188, app/assets/stylesheets/dashboard.scss */
.modal-content {
  position: relative;
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 2212, app/assets/stylesheets/dashboard.scss */
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 2219, app/assets/stylesheets/dashboard.scss */
.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* line 2227, app/assets/stylesheets/dashboard.scss */
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

/* line 2235, app/assets/stylesheets/dashboard.scss */
.modal-close:hover {
  color: var(--text-primary);
}

/* line 2240, app/assets/stylesheets/dashboard.scss */
.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

/* line 2246, app/assets/stylesheets/dashboard.scss */
.modal-instruction {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* line 2252, app/assets/stylesheets/dashboard.scss */
.modal-body textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s;
}

/* line 2262, app/assets/stylesheets/dashboard.scss */
.modal-body textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* line 2268, app/assets/stylesheets/dashboard.scss */
.modal-answer {
  margin-top: 24px;
  padding: 16px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

/* line 2275, app/assets/stylesheets/dashboard.scss */
.modal-answer h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

/* line 2283, app/assets/stylesheets/dashboard.scss */
.answer-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
}

/* line 2288, app/assets/stylesheets/dashboard.scss */
.answer-content p {
  margin-bottom: 12px;
}

/* line 2291, app/assets/stylesheets/dashboard.scss */
.answer-content p:last-child {
  margin-bottom: 0;
}

/* line 2297, app/assets/stylesheets/dashboard.scss */
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* line 2305, app/assets/stylesheets/dashboard.scss */
.btn-secondary {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

/* line 2316, app/assets/stylesheets/dashboard.scss */
.btn-secondary:hover {
  background-color: var(--bg-tertiary);
}

/* line 2321, app/assets/stylesheets/dashboard.scss */
.btn-primary {
  padding: 10px 20px;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 2332, app/assets/stylesheets/dashboard.scss */
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* line 2337, app/assets/stylesheets/dashboard.scss */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 2343, app/assets/stylesheets/dashboard.scss */
.background-transparent {
  background-color: transparent;
}

/* ===== Development Tools (inline) ===== */
/* line 2348, app/assets/stylesheets/dashboard.scss */
.dev-tools-inline {
  display: inline-flex;
  margin-left: 12px;
}

/* line 2352, app/assets/stylesheets/dashboard.scss */
.dev-tools-inline__button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 2366, app/assets/stylesheets/dashboard.scss */
.dev-tools-inline__button svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

/* line 2372, app/assets/stylesheets/dashboard.scss */
.dev-tools-inline__button span {
  opacity: 0.8;
}

/* line 2376, app/assets/stylesheets/dashboard.scss */
.dev-tools-inline__button:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--text-tertiary);
  color: var(--text-secondary);
}

/* line 2381, app/assets/stylesheets/dashboard.scss */
.dev-tools-inline__button:hover svg, .dev-tools-inline__button:hover span {
  opacity: 1;
}

/* ===== Mobile Footer Navigation ===== */
/* line 2389, app/assets/stylesheets/dashboard.scss */
.mobile-footer-nav {
  /* Safe area for iOS devices with home indicator */
  padding-bottom: env(safe-area-inset-bottom, 0);
  /* Backdrop blur for modern look */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

/* line 2399, app/assets/stylesheets/dashboard.scss */
.safe-area-bottom {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Mobile nav item hover/active states */
/* line 2404, app/assets/stylesheets/dashboard.scss */
.mobile-nav-item {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ===== Mobile Responsive Adjustments ===== */
@media (max-width: 767px) {
  /* Hide floating chatbot button on mobile - use mobile footer nav "Ask" button instead */
  /* line 2412, app/assets/stylesheets/dashboard.scss */
  .lit-e-gator-toggle {
    display: none !important;
  }
  /* Chatbot popup - full screen on mobile */
  /* line 2417, app/assets/stylesheets/dashboard.scss */
  .lit-e-gator-popup,
#lit-e-gator-popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
    z-index: 10000 !important;
  }
  /* Strategic Advice Section - Mobile */
  /* line 2433, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section {
    padding: 16px;
  }
  /* line 2436, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 2442, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section .progress-indicator {
    width: 100%;
  }
  /* line 2445, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section .progress-indicator .progress-bar {
    flex: 1;
    width: 100%;
    max-width: none;
  }
  /* Strategic Steps - Stack vertically on mobile */
  /* line 2454, app/assets/stylesheets/dashboard.scss */
  .strategic-steps--horizontal {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  /* Step Card V2 - Mobile optimizations */
  /* line 2460, app/assets/stylesheets/dashboard.scss */
  .step-card-v2 {
    padding: 14px;
  }
  /* line 2463, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__description {
    font-size: 13px;
  }
  /* line 2467, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__label {
    font-size: 12px;
  }
  /* Dashboard grid mobile layout */
  /* line 2473, app/assets/stylesheets/dashboard.scss */
  .dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* line 2481, app/assets/stylesheets/dashboard.scss */
  .dashboard-content {
    width: 100%;
  }
  /* line 2485, app/assets/stylesheets/dashboard.scss */
  .dashboard-sidebar {
    width: 100%;
  }
  /* Metrics cards - stack on mobile */
  /* line 2490, app/assets/stylesheets/dashboard.scss */
  .metric-cards {
    flex-direction: column;
  }
  /* line 2494, app/assets/stylesheets/dashboard.scss */
  .metric-card {
    width: 100%;
  }
  /* Case header adjustments for mobile */
  /* line 2499, app/assets/stylesheets/dashboard.scss */
  .case-header-card {
    padding: 16px;
  }
  /* Task Manager - Mobile */
  /* line 2504, app/assets/stylesheets/dashboard.scss */
  .task-manager-widget {
    padding: 16px;
  }
  /* line 2508, app/assets/stylesheets/dashboard.scss */
  .task-item {
    padding: 10px;
    flex-wrap: wrap;
    gap: 8px;
  }
  /* line 2514, app/assets/stylesheets/dashboard.scss */
  .task-info {
    flex: 1;
    min-width: 60%;
  }
  /* line 2519, app/assets/stylesheets/dashboard.scss */
  .task-actions {
    gap: 6px;
  }
  /* line 2523, app/assets/stylesheets/dashboard.scss */
  .task-action-btn {
    padding: 4px;
    font-size: 12px;
  }
  /* line 2528, app/assets/stylesheets/dashboard.scss */
  .task-complete-btn,
.task-complete-badge {
    width: 28px;
    height: 28px;
  }
  /* Tabs - scrollable on mobile */
  /* line 2535, app/assets/stylesheets/dashboard.scss */
  [data-name="Tabs"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  /* line 2541, app/assets/stylesheets/dashboard.scss */
  [data-name="Tabs"]::-webkit-scrollbar {
    display: none;
  }
}

/* Extra small screens (< 400px) */
@media (max-width: 400px) {
  /* line 2549, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section {
    padding: 12px;
  }
  /* line 2553, app/assets/stylesheets/dashboard.scss */
  .step-card-v2 {
    padding: 12px;
  }
  /* line 2556, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__main {
    gap: 8px;
  }
  /* line 2560, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__description {
    font-size: 12px;
    line-height: 1.4;
  }
  /* line 2567, app/assets/stylesheets/dashboard.scss */
  .progress-indicator .progress-text {
    font-size: 12px;
  }
  /* line 2573, app/assets/stylesheets/dashboard.scss */
  .task-info .task-title {
    font-size: 13px;
  }
  /* line 2577, app/assets/stylesheets/dashboard.scss */
  .task-info .task-date {
    font-size: 11px;
  }
}

/* ===== Share Case Modal ===== */
/* line 2584, app/assets/stylesheets/dashboard.scss */
.share-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 2593, app/assets/stylesheets/dashboard.scss */
.share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* line 2599, app/assets/stylesheets/dashboard.scss */
.share-modal__container {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* line 2609, app/assets/stylesheets/dashboard.scss */
.share-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
  border-bottom: 1px solid #E4E7EC;
}

/* line 2617, app/assets/stylesheets/dashboard.scss */
.share-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #141C25;
  margin: 0;
}

/* line 2626, app/assets/stylesheets/dashboard.scss */
.share-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 2px;
  background: #F2F4F7;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #141C25;
  transition: background 0.2s;
}

/* line 2640, app/assets/stylesheets/dashboard.scss */
.share-modal__close:hover {
  background: #E4E7EC;
}

/* line 2645, app/assets/stylesheets/dashboard.scss */
.share-modal__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 2652, app/assets/stylesheets/dashboard.scss */
.share-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 2658, app/assets/stylesheets/dashboard.scss */
.share-modal__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #141C25;
}

/* line 2666, app/assets/stylesheets/dashboard.scss */
.share-modal__input-wrapper {
  position: relative;
}

/* line 2670, app/assets/stylesheets/dashboard.scss */
.share-modal__input {
  width: 100%;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #141C25;
  background: #ffffff;
  border: 1px solid #E4E7EC;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
}

/* line 2683, app/assets/stylesheets/dashboard.scss */
.share-modal__input::placeholder {
  color: #97A1AF;
}

/* line 2687, app/assets/stylesheets/dashboard.scss */
.share-modal__input:focus {
  border-color: #2E7FD8;
}

/* line 2692, app/assets/stylesheets/dashboard.scss */
.share-modal__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 2698, app/assets/stylesheets/dashboard.scss */
.share-modal__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px 4px 10px;
  background: rgba(46, 127, 216, 0.05);
  border: 1px solid #2E7FD8;
  border-radius: 999px;
}

/* line 2708, app/assets/stylesheets/dashboard.scss */
.share-modal__badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #00254D;
}

/* line 2716, app/assets/stylesheets/dashboard.scss */
.share-modal__badge-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 2px;
  background: #2E7FD8;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #F2F4F7;
}

/* line 2729, app/assets/stylesheets/dashboard.scss */
.share-modal__badge-remove:hover {
  background: #1e6fc8;
}

/* line 2734, app/assets/stylesheets/dashboard.scss */
.share-modal__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

/* line 2741, app/assets/stylesheets/dashboard.scss */
.share-modal__divider-line {
  flex: 1;
  height: 1px;
  background: #E4E7EC;
}

/* line 2747, app/assets/stylesheets/dashboard.scss */
.share-modal__divider-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #344051;
}

/* line 2755, app/assets/stylesheets/dashboard.scss */
.share-modal__copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  background: #2E7FD8;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  transition: background 0.2s;
  box-shadow: 0 1px 2px rgba(20, 28, 37, 0.04);
}

/* line 2774, app/assets/stylesheets/dashboard.scss */
.share-modal__copy-btn:hover {
  background: #1e6fc8;
}

/* line 2778, app/assets/stylesheets/dashboard.scss */
.share-modal__copy-btn--copied {
  background: #10B981;
}

/* line 2781, app/assets/stylesheets/dashboard.scss */
.share-modal__copy-btn--copied:hover {
  background: #059669;
}

/* ===== Help Page Styles ===== */
/* line 2789, app/assets/stylesheets/dashboard.scss */
.help-page {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* line 2794, app/assets/stylesheets/dashboard.scss */
.help-page__header {
  margin-bottom: 32px;
}

/* line 2798, app/assets/stylesheets/dashboard.scss */
.help-page__title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

/* line 2807, app/assets/stylesheets/dashboard.scss */
.help-page__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-secondary);
  margin: 0;
}

/* line 2816, app/assets/stylesheets/dashboard.scss */
.help-page__section {
  margin-bottom: 40px;
}

/* line 2820, app/assets/stylesheets/dashboard.scss */
.help-page__section-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

/* line 2829, app/assets/stylesheets/dashboard.scss */
.help-page__faqs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2835, app/assets/stylesheets/dashboard.scss */
.help-page__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

/* FAQ Card Styles */
/* line 2843, app/assets/stylesheets/dashboard.scss */
.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

/* line 2850, app/assets/stylesheets/dashboard.scss */
.faq-card:hover {
  box-shadow: var(--shadow-sm);
}

/* line 2855, app/assets/stylesheets/dashboard.scss */
.faq-card--expanded .faq-card__icon {
  transform: rotate(180deg);
}

/* line 2860, app/assets/stylesheets/dashboard.scss */
.faq-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* line 2871, app/assets/stylesheets/dashboard.scss */
.faq-card__header:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #2E7FD8;
}

/* line 2877, app/assets/stylesheets/dashboard.scss */
.faq-card__question {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-primary);
  flex: 1;
  padding-right: 12px;
}

/* line 2887, app/assets/stylesheets/dashboard.scss */
.faq-card__icon {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

/* line 2893, app/assets/stylesheets/dashboard.scss */
.faq-card__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* line 2899, app/assets/stylesheets/dashboard.scss */
.faq-card__answer {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--text-secondary);
  padding: 0 20px 16px 20px;
  margin: 0;
}

/* Contact Card Styles */
/* line 2911, app/assets/stylesheets/dashboard.scss */
.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s ease;
}

/* line 2922, app/assets/stylesheets/dashboard.scss */
.contact-card:hover {
  box-shadow: var(--shadow-sm);
}

/* line 2926, app/assets/stylesheets/dashboard.scss */
.contact-card__icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 2934, app/assets/stylesheets/dashboard.scss */
.contact-card__icon-wrapper--phone {
  background: rgba(46, 127, 216, 0.1);
  color: #2E7FD8;
}

/* line 2939, app/assets/stylesheets/dashboard.scss */
.contact-card__icon-wrapper--location {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

/* line 2944, app/assets/stylesheets/dashboard.scss */
.contact-card__icon-wrapper--email {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

/* line 2949, app/assets/stylesheets/dashboard.scss */
.contact-card__icon-wrapper--social {
  background: rgba(14, 118, 168, 0.1);
  color: #0E76A8;
}

/* line 2955, app/assets/stylesheets/dashboard.scss */
.contact-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--text-secondary);
  margin: 0;
}

/* line 2964, app/assets/stylesheets/dashboard.scss */
.contact-card__value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-primary);
  margin: 0;
}

/* line 2972, app/assets/stylesheets/dashboard.scss */
.contact-card__value--link {
  color: #2E7FD8;
  text-decoration: none;
  transition: color 0.2s;
}

/* line 2977, app/assets/stylesheets/dashboard.scss */
.contact-card__value--link:hover {
  color: #1e6fc8;
  text-decoration: underline;
}

/* ===== Settings Page Styles ===== */
/* line 2986, app/assets/stylesheets/dashboard.scss */
.settings-page {
  padding: 24px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 2995, app/assets/stylesheets/dashboard.scss */
.settings-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

/* line 3000, app/assets/stylesheets/dashboard.scss */
.settings-section--disabled {
  opacity: 0.6;
  position: relative;
}

/* line 3005, app/assets/stylesheets/dashboard.scss */
.settings-section__header {
  padding-bottom: 12px;
}

/* line 3009, app/assets/stylesheets/dashboard.scss */
.settings-section__title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* line 3022, app/assets/stylesheets/dashboard.scss */
.settings-section__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: #F2F4F7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #637083;
}

/* line 3034, app/assets/stylesheets/dashboard.scss */
.settings-section__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-tertiary);
  margin: 0;
}

/* line 3044, app/assets/stylesheets/dashboard.scss */
.settings-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
}

/* line 3050, app/assets/stylesheets/dashboard.scss */
.settings-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 3056, app/assets/stylesheets/dashboard.scss */
.settings-form__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--text-primary);
}

/* line 3064, app/assets/stylesheets/dashboard.scss */
.settings-form__input {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-primary);
  width: 100%;
  box-sizing: border-box;
}

/* line 3077, app/assets/stylesheets/dashboard.scss */
.settings-form__input::placeholder {
  color: var(--text-tertiary);
}

/* line 3081, app/assets/stylesheets/dashboard.scss */
.settings-form__input:focus {
  outline: none;
  border-color: #2E7FD8;
}

/* line 3086, app/assets/stylesheets/dashboard.scss */
.settings-form__input--with-prefix {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex: 1;
}

/* line 3093, app/assets/stylesheets/dashboard.scss */
.settings-form__input-group {
  display: flex;
  align-items: center;
  position: relative;
}

/* line 3099, app/assets/stylesheets/dashboard.scss */
.settings-form__input-prefix {
  background: #F9FAFB;
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-tertiary);
}

/* line 3112, app/assets/stylesheets/dashboard.scss */
.settings-form__input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 3119, app/assets/stylesheets/dashboard.scss */
.settings-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  width: fit-content;
}

/* line 3135, app/assets/stylesheets/dashboard.scss */
.settings-form__button--primary {
  background: #2E7FD8;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(20, 28, 37, 0.04);
}

/* line 3140, app/assets/stylesheets/dashboard.scss */
.settings-form__button--primary:hover {
  background: #1e6fc8;
}

/* line 3145, app/assets/stylesheets/dashboard.scss */
.settings-form__button--secondary {
  background: #ffffff;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

/* line 3150, app/assets/stylesheets/dashboard.scss */
.settings-form__button--secondary:hover {
  background: #F9FAFB;
}

/* line 3155, app/assets/stylesheets/dashboard.scss */
.settings-form__button--danger {
  background: #EF4444;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(20, 28, 37, 0.04);
}

/* line 3160, app/assets/stylesheets/dashboard.scss */
.settings-form__button--danger:hover:not(:disabled) {
  background: #B91C1C;
}

/* line 3165, app/assets/stylesheets/dashboard.scss */
.settings-form__button--disabled, .settings-form__button:disabled {
  background: #E4E7EC !important;
  color: #97A1AF !important;
  cursor: not-allowed;
  box-shadow: none;
}

/* line 3172, app/assets/stylesheets/dashboard.scss */
.settings-form__button--disabled:hover, .settings-form__button:disabled:hover {
  background: #E4E7EC !important;
}

/* Plans Section */
/* line 3180, app/assets/stylesheets/dashboard.scss */
.settings-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  /* line 3180, app/assets/stylesheets/dashboard.scss */
  .settings-plans {
    grid-template-columns: 1fr;
  }
}

/* line 3190, app/assets/stylesheets/dashboard.scss */
.settings-plan-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.2s;
}

/* line 3201, app/assets/stylesheets/dashboard.scss */
.settings-plan-card:hover {
  border-color: #2E7FD8;
}

/* line 3205, app/assets/stylesheets/dashboard.scss */
.settings-plan-card--selected {
  border-color: #2E7FD8;
}

/* line 3209, app/assets/stylesheets/dashboard.scss */
.settings-plan-card--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

/* line 3213, app/assets/stylesheets/dashboard.scss */
.settings-plan-card--disabled:hover {
  border-color: var(--border-color);
}

/* line 3218, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 3224, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F2F4F7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7FD8;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #F2F4F7;
}

/* line 3236, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-primary);
}

/* line 3244, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 3255, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__radio--selected {
  border-color: #2E7FD8;
  background: #2E7FD8;
}

/* line 3261, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

/* 2FA Section */
/* line 3270, app/assets/stylesheets/dashboard.scss */
.settings-usage-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* line 3276, app/assets/stylesheets/dashboard.scss */
.settings-usage-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F9FAFB;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 120px;
  flex: 1;
}

/* line 3287, app/assets/stylesheets/dashboard.scss */
.settings-usage-stat__value {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

/* line 3295, app/assets/stylesheets/dashboard.scss */
.settings-usage-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* line 3304, app/assets/stylesheets/dashboard.scss */
.settings-2fa {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* line 3310, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 300px;
  flex: 1;
}

/* line 3322, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card--active {
  border-color: #2E7FD8;
}

/* line 3326, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

/* line 3331, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card__content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* line 3337, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F2F4F7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E7FD8;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #F2F4F7;
  flex-shrink: 0;
}

/* line 3350, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 3356, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-primary);
  margin: 0;
}

/* line 3365, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card__description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text-secondary);
  margin: 0;
}

/* Toggle Switch */
/* line 3376, app/assets/stylesheets/dashboard.scss */
.settings-toggle {
  width: 36px;
  height: 20px;
  border-radius: 500px;
  background: #97A1AF;
  border: none;
  padding: 2px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}

/* line 3388, app/assets/stylesheets/dashboard.scss */
.settings-toggle--on {
  background: #2E7FD8;
}

/* line 3391, app/assets/stylesheets/dashboard.scss */
.settings-toggle--on .settings-toggle__slider {
  transform: translateX(16px);
}

/* line 3396, app/assets/stylesheets/dashboard.scss */
.settings-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* line 3401, app/assets/stylesheets/dashboard.scss */
.settings-toggle__slider {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  display: block;
  transition: transform 0.2s;
}

/* line 3412, app/assets/stylesheets/dashboard.scss */
.delete-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* line 3423, app/assets/stylesheets/dashboard.scss */
.delete-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}

/* line 3433, app/assets/stylesheets/dashboard.scss */
.delete-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  width: 520px;
  max-width: 90%;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: slideUp 0.3s ease;
}

/* line 3444, app/assets/stylesheets/dashboard.scss */
.delete-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 12px;
  border-bottom: 1px solid #E4E7EC;
}

/* line 3452, app/assets/stylesheets/dashboard.scss */
.delete-modal__header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 3458, app/assets/stylesheets/dashboard.scss */
.delete-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #141C25;
  margin: 0;
}

/* line 3467, app/assets/stylesheets/dashboard.scss */
.delete-modal__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #344051;
  margin: 0;
}

/* line 3476, app/assets/stylesheets/dashboard.scss */
.delete-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 2px;
  background: #F2F4F7;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #141C25;
  transition: background 0.2s;
}

/* line 3490, app/assets/stylesheets/dashboard.scss */
.delete-modal__close:hover {
  background: #E4E7EC;
}

/* line 3495, app/assets/stylesheets/dashboard.scss */
.delete-modal__body {
  padding: 28px 20px;
}

/* line 3499, app/assets/stylesheets/dashboard.scss */
.delete-modal__input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #E4E7EC;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #141C25;
  background: #ffffff;
  box-sizing: border-box;
}

/* line 3512, app/assets/stylesheets/dashboard.scss */
.delete-modal__input::placeholder {
  color: #97A1AF;
}

/* line 3516, app/assets/stylesheets/dashboard.scss */
.delete-modal__input:focus {
  outline: none;
  border-color: #2E7FD8;
  box-shadow: 0 0 0 2px rgba(46, 127, 216, 0.1);
}

/* line 3523, app/assets/stylesheets/dashboard.scss */
.delete-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px 20px 20px;
  border-top: 1px solid #E4E7EC;
}

/* line 3532, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 3542, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--cancel {
  background: #ffffff;
  border: 1px solid #E4E7EC;
  color: #344051;
}

/* line 3547, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--cancel:hover {
  background: #F9FAFB;
}

/* line 3552, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--delete {
  background: #EF4444;
  border: 1px solid #EF4444;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(20, 28, 37, 0.04);
}

/* line 3558, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--delete:hover:not(:disabled) {
  background: #B91C1C;
  border-color: #B91C1C;
}

/* line 3564, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--disabled {
  background: #E4E7EC !important;
  border-color: #E4E7EC !important;
  color: #97A1AF !important;
  cursor: not-allowed;
}

/* Settings Alerts */
/* line 3574, app/assets/stylesheets/dashboard.scss */
.settings-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}

/* line 3583, app/assets/stylesheets/dashboard.scss */
.settings-alert--success {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #10B981;
}

/* line 3589, app/assets/stylesheets/dashboard.scss */
.settings-alert--error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #EF4444;
}

/* Settings Form Additional Styles */
/* line 3598, app/assets/stylesheets/dashboard.scss */
.settings-form__hint {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--text-tertiary);
  margin: 0;
}

/* line 3607, app/assets/stylesheets/dashboard.scss */
.settings-form__errors {
  background: #FEF2F2;
  border: 1px solid #EF4444;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

/* line 3614, app/assets/stylesheets/dashboard.scss */
.settings-form__errors p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #B91C1C;
  margin: 0;
}

/* line 3622, app/assets/stylesheets/dashboard.scss */
.settings-form__errors p + p {
  margin-top: 4px;
}

/* Settings Section Variants */
/* line 3630, app/assets/stylesheets/dashboard.scss */
.settings-section--danger {
  border: 1px solid #FEE2E2;
  background: #FFF7F7;
}

/* line 3634, app/assets/stylesheets/dashboard.scss */
.settings-section--danger .settings-section__title {
  color: #B91C1C;
}

/* Settings Modal */
/* line 3640, app/assets/stylesheets/dashboard.scss */
.settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* line 3651, app/assets/stylesheets/dashboard.scss */
.settings-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

/* line 3661, app/assets/stylesheets/dashboard.scss */
.settings-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  width: 480px;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: modalSlideUp 0.3s ease;
}

/* line 3673, app/assets/stylesheets/dashboard.scss */
.settings-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #E4E7EC;
}

/* line 3681, app/assets/stylesheets/dashboard.scss */
.settings-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #141C25;
  margin: 0;
}

/* line 3690, app/assets/stylesheets/dashboard.scss */
.settings-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #637083;
  transition: background 0.2s;
}

/* line 3703, app/assets/stylesheets/dashboard.scss */
.settings-modal__close:hover {
  background: #F2F4F7;
}

/* line 3708, app/assets/stylesheets/dashboard.scss */
.settings-modal__body {
  padding: 24px;
}

/* line 3711, app/assets/stylesheets/dashboard.scss */
.settings-modal__body p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #344051;
  margin: 0 0 16px 0;
}

/* line 3720, app/assets/stylesheets/dashboard.scss */
.settings-modal__body ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

/* line 3724, app/assets/stylesheets/dashboard.scss */
.settings-modal__body ul li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #344051;
  margin-bottom: 4px;
}

/* line 3735, app/assets/stylesheets/dashboard.scss */
.settings-modal__warning {
  font-weight: 600 !important;
  color: #B91C1C !important;
}

/* line 3740, app/assets/stylesheets/dashboard.scss */
.settings-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #E4E7EC;
  background: #F9FAFB;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 3763, app/assets/stylesheets/dashboard.scss */
.trial-banner {
  background: linear-gradient(90deg, #1E40AF 0%, #2563EB 100%);
  padding: 8px 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* line 3771, app/assets/stylesheets/dashboard.scss */
.trial-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* line 3778, app/assets/stylesheets/dashboard.scss */
.trial-banner__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ffffff;
}

/* line 3784, app/assets/stylesheets/dashboard.scss */
.trial-banner__cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1E40AF;
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

/* line 3795, app/assets/stylesheets/dashboard.scss */
.trial-banner__cta:hover {
  background: #EFF6FF;
}

/* line 3800, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 16px;
  width: 520px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  z-index: 1001;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: modalSlideUp 0.3s ease;
  text-align: center;
}

/* line 3817, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
}

/* line 3825, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #637083;
  padding: 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

/* line 3838, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__close:hover {
  background: #F2F4F7;
}

/* line 3841, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__icon {
  margin-bottom: 16px;
}

/* line 3845, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}

/* line 3853, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-tertiary);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* line 3861, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__video {
  margin-bottom: 24px;
}

/* line 3865, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__video-placeholder {
  background: #F9FAFB;
  border: 1px dashed #D0D5DD;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* line 3875, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__video-placeholder span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #94a3b8;
}

/* line 3882, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings {
  text-align: left;
  margin-bottom: 24px;
}

/* line 3887, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px;
}

/* line 3895, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* line 3901, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings-card {
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 3908, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings-card--traditional {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

/* line 3913, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings-card--litegator {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

/* line 3919, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* line 3926, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings-value {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

/* line 3933, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__savings-detail {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-tertiary);
}

/* line 3939, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__next-steps {
  text-align: left;
  margin-bottom: 24px;
}

/* line 3944, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 3952, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__steps-list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #344051;
  padding-left: 20px;
  position: relative;
}

/* line 3959, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__steps-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2E7FD8;
}

/* line 3972, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__cta {
  width: 100%;
  padding: 12px 24px;
  background: #2E7FD8;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

/* line 3985, app/assets/stylesheets/dashboard.scss */
.kq-completion-modal__cta:hover {
  background: #2563EB;
}
