@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: 0 16px 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 7, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-container {
  padding: 0 24px 24px;
}

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

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

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

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

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

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

/* line 58, 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-size: 12px;
  font-weight: 600;
  border-radius: 11px;
  background: #E2E8F0;
  color: #475569;
}

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

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

/* line 89, 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-weight: 500;
  font-size: 14px;
}

/* line 102, 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 119, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-mapping-panel {
  margin-top: 20px;
}

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

/* line 134, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-assigned__intro p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* line 142, 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 150, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-assigned__empty svg {
  color: #CBD5E1;
}

/* line 154, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-assigned__empty p {
  font-size: 14px;
  color: #64748B;
  max-width: 400px;
}

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

/* line 172, 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 #F1F5F9;
}

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

/* line 186, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__number {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2E7FD8;
  margin-bottom: 4px;
}

/* line 196, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__header h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  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-size: 12px;
  font-weight: 500;
  color: #64748B;
  white-space: nowrap;
}

/* line 218, 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-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  color: #FFFFFF;
}

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

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

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

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

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

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

/* line 239, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-fundamental-card__empty p {
  font-size: 13px;
  color: #94A3B8;
  margin: 0;
}

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

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

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

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

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

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

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

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

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

/* line 287, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-criterion-row__text p {
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
  margin: 0;
}

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

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

/* line 313, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

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

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

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

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

/* line 340, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-status-badge.em-status-unknown {
  background: #F1F5F9;
  color: #64748B;
}

/* line 349, app/assets/stylesheets/components/_evidence_mapping.scss */
.em-evidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 12px;
  white-space: nowrap;
  background: #F8FAFC;
  color: #64748B;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 471, 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 479, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__doc-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
}

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

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

/* line 500, 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 511, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__confidence--high {
  background: #D1FAE5;
  color: #065F46;
}

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

/* line 519, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__confidence--low {
  background: #F1F5F9;
  color: #64748B;
}

/* line 525, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__reasoning {
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 8px;
}

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

/* line 536, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__quote {
  font-size: 12px;
  line-height: 1.5;
  color: #64748B;
  font-style: italic;
  margin: 4px 0;
  padding: 6px 12px;
  border-left: 3px solid #93C5FD;
  background: #FFFFFF;
  border-radius: 0 4px 4px 0;
}

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

/* line 554, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-detail__ref-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  color: #2E7FD8;
  background: #EFF6FF;
  border-radius: 4px;
}

/* line 569, 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-size: 13px;
  font-weight: 500;
}

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

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

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

/* line 597, 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 607, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-linking-status svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

/* line 625, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__intro p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* line 633, 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 642, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__complete svg {
  color: #059669;
  flex-shrink: 0;
}

/* line 647, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__complete h3 {
  font-size: 16px;
  font-weight: 600;
  color: #065F46;
  margin: 0 0 4px;
}

/* line 654, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__complete p {
  font-size: 14px;
  color: #047857;
  margin: 0;
}

/* line 661, 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 669, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__empty svg {
  color: #CBD5E1;
}

/* line 673, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed__empty p {
  font-size: 14px;
  color: #64748B;
  max-width: 400px;
}

/* line 684, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group {
  margin-bottom: 24px;
}

/* line 687, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  margin-bottom: 12px;
  border-bottom: 2px solid #E2E8F0;
}

/* line 696, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__header h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
}

/* line 704, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-group__count {
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
  white-space: nowrap;
}

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

/* line 721, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px 24px;
  transition: box-shadow 0.2s ease;
}

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

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

/* line 736, 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 743, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__title-row h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  margin: 0;
  line-height: 1.4;
}

/* line 752, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

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

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

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

/* line 786, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__description {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 12px;
}

/* line 793, 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-size: 13px;
  font-weight: 500;
  color: #2E7FD8;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease;
}

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

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

/* line 818, 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 #F1F5F9;
}

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

/* line 831, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-needed-card__resolution {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
  font-size: 13px;
}

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

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

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

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

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

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

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

/* line 886, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-importance-badge.importance-standard {
  background: #F8FAFC;
  color: #475569;
}

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

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

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

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

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

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

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

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

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

/* line 951, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--cancel {
  background: #F1F5F9;
  color: #475569;
  border-color: #E2E8F0;
}

/* line 956, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-action-btn--cancel:hover {
  background: #E2E8F0;
  color: #334155;
}

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

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

/* line 976, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__file-input {
  display: block;
  width: 100%;
  font-size: 13px;
  color: #475569;
}

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

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

/* line 1000, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__text-input {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  background: #FFFFFF;
  color: #334155;
}

/* line 1010, 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 1016, app/assets/stylesheets/components/_evidence_mapping.scss */
.evidence-upload-form__text-input::placeholder {
  color: #94A3B8;
}

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

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

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

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

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

/* line 1052, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__section h4 {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin: 0 0 6px;
}

/* line 1059, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__section p {
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* line 1067, 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 1078, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__icon svg {
  width: 16px;
  height: 16px;
}

/* line 1084, 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 1092, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__evidence-types li {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #475569;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
}

/* line 1105, app/assets/stylesheets/components/_evidence_mapping.scss */
.gap-detail-panel__context {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0 0;
  font-size: 12px;
  color: #64748B;
}

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

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

@media (max-width: 768px) {
  /* line 1129, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-mapping-container {
    padding: 0 16px 16px;
  }
  /* line 1133, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-mapping-pills {
    width: 100%;
  }
  /* line 1137, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-pill {
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
    font-size: 13px;
  }
  /* line 1144, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-fundamental-card__header {
    flex-direction: column;
    padding: 16px;
  }
  /* line 1149, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-criterion-row {
    padding: 12px 16px;
  }
  /* line 1153, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-criterion-row__main {
    flex-direction: column;
    gap: 8px;
  }
  /* line 1158, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-card {
    padding: 16px;
  }
  /* line 1162, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-card__title-row {
    flex-direction: column;
    gap: 8px;
  }
  /* line 1167, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-needed-card__actions {
    flex-direction: column;
  }
  /* line 1171, app/assets/stylesheets/components/_evidence_mapping.scss */
  .evidence-action-btn {
    width: 100%;
    justify-content: center;
  }
  /* line 1176, app/assets/stylesheets/components/_evidence_mapping.scss */
  .gap-detail-panel__section {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== 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 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(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%;
}

/* line 76, 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 84, 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 93, 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 102, app/assets/stylesheets/dashboard.scss */
.case-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

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

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

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

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

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

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

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

/* line 156, 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 164, app/assets/stylesheets/dashboard.scss */
.status-badge.status-pending, .status-badge.status-dispute-arose {
  background-color: #FEF3C7;
  color: #92400E;
}

/* line 170, 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 178, app/assets/stylesheets/dashboard.scss */
.status-badge.status-completed, .status-badge.status-final-hearing {
  background-color: #D1FAE5;
  color: #065F46;
}

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

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

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

/* ===== Buttons ===== */
/* line 203, 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 221, 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 227, app/assets/stylesheets/dashboard.scss */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

/* line 284, 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 296, app/assets/stylesheets/dashboard.scss */
.btn-link:hover {
  text-decoration: underline;
}

/* ===== Tab Navigation ===== */
/* line 302, 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 310, 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 319, app/assets/stylesheets/dashboard.scss */
.tab-link:hover {
  color: var(--text-primary);
}

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

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

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

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

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

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

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

/* line 365, 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 372, app/assets/stylesheets/dashboard.scss */
.metric-card--horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

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

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

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

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

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

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

/* line 424, 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 438, app/assets/stylesheets/dashboard.scss */
.metric-card__action-link:hover {
  color: var(--color-primary-dark, #1e6bb8);
  text-decoration: underline;
}

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

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

/* line 452, 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 462, 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 472, app/assets/stylesheets/dashboard.scss */
.metric-card__locked .metric-card__title {
  color: var(--text-muted);
  font-size: 13px;
}

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

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

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

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

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

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

/* line 515, app/assets/stylesheets/dashboard.scss */
.circular-progress--with-grade {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 523, app/assets/stylesheets/dashboard.scss */
.progress-grade {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

/* line 533, app/assets/stylesheets/dashboard.scss */
.progress-grade--a {
  color: #10B981;
}

/* line 537, app/assets/stylesheets/dashboard.scss */
.progress-grade--b {
  color: #10B981;
}

/* line 541, app/assets/stylesheets/dashboard.scss */
.progress-grade--c {
  color: #F59E0B;
}

/* line 545, app/assets/stylesheets/dashboard.scss */
.progress-grade--d {
  color: #F59E0B;
}

/* line 549, app/assets/stylesheets/dashboard.scss */
.progress-grade--f {
  color: #EF4444;
}

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

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

/* line 564, 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 573, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill.progress-orange {
  stroke: #2E7FD8;
}

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

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

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

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

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

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

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

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

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

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

/* ===== Strategic Advice Section ===== */
/* line 630, 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 638, app/assets/stylesheets/dashboard.scss */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

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

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

/* line 658, 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 672, app/assets/stylesheets/dashboard.scss */
.btn-refresh-analysis .icon {
  width: 16px;
  height: 16px;
}

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

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

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

/* line 694, 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 694, app/assets/stylesheets/dashboard.scss */
  .progress-bar {
    width: 300px;
  }
}

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

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

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

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

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

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

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

/* line 744, 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 751, app/assets/stylesheets/dashboard.scss */
.step-card-v2--completed {
  background-color: var(--bg-secondary);
  border-color: #2e7fd8;
}

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

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

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

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

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

/* line 786, 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 796, app/assets/stylesheets/dashboard.scss */
.step-card-v2__link:hover {
  text-decoration: underline;
}

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

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

/* line 811, 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 821, 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 830, 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 839, app/assets/stylesheets/dashboard.scss */
.step-card.completed {
  background-color: #F0FDF4;
  border-color: var(--color-success);
}

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

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

/* line 855, 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 871, app/assets/stylesheets/dashboard.scss */
.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

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

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

/* ===== Accordion Sections ===== */
/* line 898, 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 906, 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 914, app/assets/stylesheets/dashboard.scss */
.case-analysis-section .section-header .header-actions,
.case-fundamentals-section .section-header .header-actions {
  display: flex;
  gap: 8px;
}

/* line 922, 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 935, app/assets/stylesheets/dashboard.scss */
.btn-generate-analysis .sparkle-icon {
  width: 16px;
  height: 16px;
}

/* line 940, 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 947, app/assets/stylesheets/dashboard.scss */
.btn-generate-analysis:hover {
  background-color: var(--bg-tertiary);
  border-color: #2e7fd8;
}

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

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

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

/* line 969, 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 976, app/assets/stylesheets/dashboard.scss */
.analysis-item-v2__content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
}

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

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

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

/* line 993, 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 1002, 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 1009, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-content {
  max-width: 400px;
  margin: 0 auto;
}

/* line 1014, 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 1025, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-icon svg {
  opacity: 0.6;
}

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

/* line 1037, 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 1044, 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 1050, 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 1058, app/assets/stylesheets/dashboard.scss */
.case-analysis-locked .locked-progress .progress-bar {
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

/* line 1064, 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 1074, app/assets/stylesheets/dashboard.scss */
.analysis-accordion,
.fundamentals-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

/* line 1094, 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 1105, app/assets/stylesheets/dashboard.scss */
.analysis-header:hover,
.fundamental-header:hover {
  background-color: #E2E8F0;
}

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

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

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

/* line 1127, 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 1135, 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 1144, 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 1157, app/assets/stylesheets/dashboard.scss */
.btn-question-analysis svg {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

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

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

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

/* line 1183, 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 1191, 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 1200, 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 1207, 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 1215, app/assets/stylesheets/dashboard.scss */
.analysis-content p,
.fundamental-content p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--text-primary);
}

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

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

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

/* line 1236, 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 1246, 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 1252, app/assets/stylesheets/dashboard.scss */
.analysis-content a:hover,
.fundamental-content a:hover {
  border-bottom-color: var(--color-primary);
}

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

/* line 1263, 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 1271, 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 1281, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list li strong,
.fundamental-content .evaluation-list li strong {
  font-size: inherit;
  font-weight: 600;
}

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

/* line 1291, 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 1299, app/assets/stylesheets/dashboard.scss */
.analysis-content .evaluation-list--numbered,
.fundamental-content .evaluation-list--numbered {
  list-style: none;
  counter-reset: eval-counter;
}

/* line 1303, 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 1308, 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 1321, app/assets/stylesheets/dashboard.scss */
.analysis-content p,
.fundamental-content p {
  font-size: 14px;
  line-height: 1.7;
  margin: 12px 0;
}

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

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

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

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

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

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

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

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

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

/* line 1386, 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 1396, 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 1405, app/assets/stylesheets/dashboard.scss */
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

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

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

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

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

/* line 1437, 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 1447, app/assets/stylesheets/dashboard.scss */
.task-item:hover,
.document-item:hover {
  border-color: var(--color-primary);
  background-color: var(--bg-secondary);
}

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

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

/* line 1463, 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 1474, app/assets/stylesheets/dashboard.scss */
.task-date,
.document-date {
  font-size: 12px;
  color: var(--text-secondary);
}

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

/* line 1488, 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 1500, app/assets/stylesheets/dashboard.scss */
.task-action-btn:hover,
.document-action-btn:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

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

/* line 1511, 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 1525, app/assets/stylesheets/dashboard.scss */
.task-complete-btn svg {
  color: white;
}

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

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

/* line 1540, 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 1550, app/assets/stylesheets/dashboard.scss */
.task-complete-badge svg {
  color: white;
}

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

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

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

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

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

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

/* line 1593, 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 1600, 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 1608, app/assets/stylesheets/dashboard.scss */
.marker-dot.scheduled {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

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

/* line 1621, 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 1632, app/assets/stylesheets/dashboard.scss */
.event-status {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

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

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

/* ===== Document Icons ===== */
/* line 1650, 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 1663, app/assets/stylesheets/dashboard.scss */
.upload-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

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

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

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

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

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

/* line 1699, 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 1708, app/assets/stylesheets/dashboard.scss */
.sidebar-logo .logo-link svg {
  flex-shrink: 0;
}

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

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

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

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

/* line 1734, 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 1746, app/assets/stylesheets/dashboard.scss */
.nav-link:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

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

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

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

/* line 1768, 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 1776, 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 1793, app/assets/stylesheets/dashboard.scss */
.footer-link:hover {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
}

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

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

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

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

/* line 1835, 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 1853, 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 1862, 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 1886, 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 1893, app/assets/stylesheets/dashboard.scss */
.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

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

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

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

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

/* line 1926, 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 1936, app/assets/stylesheets/dashboard.scss */
.modal-body textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* line 1942, 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 1949, app/assets/stylesheets/dashboard.scss */
.modal-answer h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

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

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

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

/* line 1971, 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 1979, 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 1990, app/assets/stylesheets/dashboard.scss */
.btn-secondary:hover {
  background-color: var(--bg-tertiary);
}

/* line 1995, 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 2006, app/assets/stylesheets/dashboard.scss */
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

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

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

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

/* line 2026, 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 2040, app/assets/stylesheets/dashboard.scss */
.dev-tools-inline__button svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

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

/* line 2050, 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 2055, app/assets/stylesheets/dashboard.scss */
.dev-tools-inline__button:hover svg, .dev-tools-inline__button:hover span {
  opacity: 1;
}

/* ===== Mobile Footer Navigation ===== */
/* line 2063, 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 2073, app/assets/stylesheets/dashboard.scss */
.safe-area-bottom {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Mobile nav item hover/active states */
/* line 2078, 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 2086, app/assets/stylesheets/dashboard.scss */
  .lit-e-gator-toggle {
    display: none !important;
  }
  /* Chatbot popup - full screen on mobile */
  /* line 2091, 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 2107, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section {
    padding: 16px;
  }
  /* line 2110, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 2116, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section .progress-indicator {
    width: 100%;
  }
  /* line 2119, 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 2128, app/assets/stylesheets/dashboard.scss */
  .strategic-steps--horizontal {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  /* Step Card V2 - Mobile optimizations */
  /* line 2134, app/assets/stylesheets/dashboard.scss */
  .step-card-v2 {
    padding: 14px;
  }
  /* line 2137, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__description {
    font-size: 13px;
  }
  /* line 2141, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__label {
    font-size: 12px;
  }
  /* Dashboard grid mobile layout */
  /* line 2147, app/assets/stylesheets/dashboard.scss */
  .dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* line 2155, app/assets/stylesheets/dashboard.scss */
  .dashboard-content {
    width: 100%;
  }
  /* line 2159, app/assets/stylesheets/dashboard.scss */
  .dashboard-sidebar {
    width: 100%;
  }
  /* Metrics cards - stack on mobile */
  /* line 2164, app/assets/stylesheets/dashboard.scss */
  .metric-cards {
    flex-direction: column;
  }
  /* line 2168, app/assets/stylesheets/dashboard.scss */
  .metric-card {
    width: 100%;
  }
  /* Case header adjustments for mobile */
  /* line 2173, app/assets/stylesheets/dashboard.scss */
  .case-header-card {
    padding: 16px;
  }
  /* Task Manager - Mobile */
  /* line 2178, app/assets/stylesheets/dashboard.scss */
  .task-manager-widget {
    padding: 16px;
  }
  /* line 2182, app/assets/stylesheets/dashboard.scss */
  .task-item {
    padding: 10px;
    flex-wrap: wrap;
    gap: 8px;
  }
  /* line 2188, app/assets/stylesheets/dashboard.scss */
  .task-info {
    flex: 1;
    min-width: 60%;
  }
  /* line 2193, app/assets/stylesheets/dashboard.scss */
  .task-actions {
    gap: 6px;
  }
  /* line 2197, app/assets/stylesheets/dashboard.scss */
  .task-action-btn {
    padding: 4px;
    font-size: 12px;
  }
  /* line 2202, app/assets/stylesheets/dashboard.scss */
  .task-complete-btn,
.task-complete-badge {
    width: 28px;
    height: 28px;
  }
  /* Tabs - scrollable on mobile */
  /* line 2209, app/assets/stylesheets/dashboard.scss */
  [data-name="Tabs"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  /* line 2215, app/assets/stylesheets/dashboard.scss */
  [data-name="Tabs"]::-webkit-scrollbar {
    display: none;
  }
}

/* Extra small screens (< 400px) */
@media (max-width: 400px) {
  /* line 2223, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section {
    padding: 12px;
  }
  /* line 2227, app/assets/stylesheets/dashboard.scss */
  .step-card-v2 {
    padding: 12px;
  }
  /* line 2230, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__main {
    gap: 8px;
  }
  /* line 2234, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__description {
    font-size: 12px;
    line-height: 1.4;
  }
  /* line 2241, app/assets/stylesheets/dashboard.scss */
  .progress-indicator .progress-text {
    font-size: 12px;
  }
  /* line 2247, app/assets/stylesheets/dashboard.scss */
  .task-info .task-title {
    font-size: 13px;
  }
  /* line 2251, app/assets/stylesheets/dashboard.scss */
  .task-info .task-date {
    font-size: 11px;
  }
}

/* ===== Share Case Modal ===== */
/* line 2258, 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 2267, app/assets/stylesheets/dashboard.scss */
.share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* line 2273, 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 2283, 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 2291, 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 2300, 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 2314, app/assets/stylesheets/dashboard.scss */
.share-modal__close:hover {
  background: #E4E7EC;
}

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

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

/* line 2332, 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 2340, app/assets/stylesheets/dashboard.scss */
.share-modal__input-wrapper {
  position: relative;
}

/* line 2344, 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 2357, app/assets/stylesheets/dashboard.scss */
.share-modal__input::placeholder {
  color: #97A1AF;
}

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

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

/* line 2372, 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 2382, 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 2390, 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 2403, app/assets/stylesheets/dashboard.scss */
.share-modal__badge-remove:hover {
  background: #1e6fc8;
}

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

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

/* line 2421, 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 2429, 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 2448, app/assets/stylesheets/dashboard.scss */
.share-modal__copy-btn:hover {
  background: #1e6fc8;
}

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

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

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

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

/* line 2472, 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 2481, 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 2490, app/assets/stylesheets/dashboard.scss */
.help-page__section {
  margin-bottom: 40px;
}

/* line 2494, 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 2503, app/assets/stylesheets/dashboard.scss */
.help-page__faqs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 2509, 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 2517, 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 2524, app/assets/stylesheets/dashboard.scss */
.faq-card:hover {
  box-shadow: var(--shadow-sm);
}

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

/* line 2534, 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 2545, app/assets/stylesheets/dashboard.scss */
.faq-card__header:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #2E7FD8;
}

/* line 2551, 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 2561, app/assets/stylesheets/dashboard.scss */
.faq-card__icon {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

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

/* line 2573, 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 2585, 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 2596, app/assets/stylesheets/dashboard.scss */
.contact-card:hover {
  box-shadow: var(--shadow-sm);
}

/* line 2600, 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 2608, app/assets/stylesheets/dashboard.scss */
.contact-card__icon-wrapper--phone {
  background: rgba(46, 127, 216, 0.1);
  color: #2E7FD8;
}

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

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

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

/* line 2629, 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 2638, 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 2646, app/assets/stylesheets/dashboard.scss */
.contact-card__value--link {
  color: #2E7FD8;
  text-decoration: none;
  transition: color 0.2s;
}

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

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

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

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

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

/* line 2683, 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 2696, 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 2708, 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 2718, app/assets/stylesheets/dashboard.scss */
.settings-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
}

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

/* line 2730, 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 2738, 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 2751, app/assets/stylesheets/dashboard.scss */
.settings-form__input::placeholder {
  color: var(--text-tertiary);
}

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

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

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

/* line 2773, 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 2786, app/assets/stylesheets/dashboard.scss */
.settings-form__input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 2793, 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 2809, 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 2814, app/assets/stylesheets/dashboard.scss */
.settings-form__button--primary:hover {
  background: #1e6fc8;
}

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

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

/* line 2829, 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 2834, app/assets/stylesheets/dashboard.scss */
.settings-form__button--danger:hover:not(:disabled) {
  background: #B91C1C;
}

/* line 2839, 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 2846, app/assets/stylesheets/dashboard.scss */
.settings-form__button--disabled:hover, .settings-form__button:disabled:hover {
  background: #E4E7EC !important;
}

/* Plans Section */
/* line 2854, app/assets/stylesheets/dashboard.scss */
.settings-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

/* line 2864, 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 2875, app/assets/stylesheets/dashboard.scss */
.settings-plan-card:hover {
  border-color: #2E7FD8;
}

/* line 2879, app/assets/stylesheets/dashboard.scss */
.settings-plan-card--selected {
  border-color: #2E7FD8;
}

/* line 2883, app/assets/stylesheets/dashboard.scss */
.settings-plan-card--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

/* line 2887, app/assets/stylesheets/dashboard.scss */
.settings-plan-card--disabled:hover {
  border-color: var(--border-color);
}

/* line 2892, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 2898, 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 2910, 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 2918, 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 2929, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__radio--selected {
  border-color: #2E7FD8;
  background: #2E7FD8;
}

/* line 2935, app/assets/stylesheets/dashboard.scss */
.settings-plan-card__radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}

/* 2FA Section */
/* line 2944, app/assets/stylesheets/dashboard.scss */
.settings-2fa {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* line 2950, 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 2962, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card--active {
  border-color: #2E7FD8;
}

/* line 2966, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

/* line 2971, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card__content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* line 2977, 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 2990, app/assets/stylesheets/dashboard.scss */
.settings-2fa-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 2996, 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 3005, 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 3016, 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 3028, app/assets/stylesheets/dashboard.scss */
.settings-toggle--on {
  background: #2E7FD8;
}

/* line 3031, app/assets/stylesheets/dashboard.scss */
.settings-toggle--on .settings-toggle__slider {
  transform: translateX(16px);
}

/* line 3036, app/assets/stylesheets/dashboard.scss */
.settings-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* line 3041, app/assets/stylesheets/dashboard.scss */
.settings-toggle__slider {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  display: block;
  transition: transform 0.2s;
}

/* line 3052, 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 3063, 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 3073, 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 3084, 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 3092, app/assets/stylesheets/dashboard.scss */
.delete-modal__header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 3098, 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 3107, 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 3116, 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 3130, app/assets/stylesheets/dashboard.scss */
.delete-modal__close:hover {
  background: #E4E7EC;
}

/* line 3135, app/assets/stylesheets/dashboard.scss */
.delete-modal__body {
  padding: 28px 20px;
}

/* line 3139, 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 3152, app/assets/stylesheets/dashboard.scss */
.delete-modal__input::placeholder {
  color: #97A1AF;
}

/* line 3156, 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 3163, 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 3172, 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 3182, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--cancel {
  background: #ffffff;
  border: 1px solid #E4E7EC;
  color: #344051;
}

/* line 3187, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--cancel:hover {
  background: #F9FAFB;
}

/* line 3192, 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 3198, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--delete:hover:not(:disabled) {
  background: #B91C1C;
  border-color: #B91C1C;
}

/* line 3204, 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 3214, 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 3223, app/assets/stylesheets/dashboard.scss */
.settings-alert--success {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #10B981;
}

/* line 3229, app/assets/stylesheets/dashboard.scss */
.settings-alert--error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #EF4444;
}

/* Settings Form Additional Styles */
/* line 3238, 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 3247, app/assets/stylesheets/dashboard.scss */
.settings-form__errors {
  background: #FEF2F2;
  border: 1px solid #EF4444;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

/* line 3254, 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 3262, app/assets/stylesheets/dashboard.scss */
.settings-form__errors p + p {
  margin-top: 4px;
}

/* Settings Section Variants */
/* line 3270, app/assets/stylesheets/dashboard.scss */
.settings-section--danger {
  border: 1px solid #FEE2E2;
  background: #FFF7F7;
}

/* line 3274, app/assets/stylesheets/dashboard.scss */
.settings-section--danger .settings-section__title {
  color: #B91C1C;
}

/* Settings Modal */
/* line 3280, 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 3291, 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 3301, 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 3313, 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 3321, 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 3330, 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 3343, app/assets/stylesheets/dashboard.scss */
.settings-modal__close:hover {
  background: #F2F4F7;
}

/* line 3348, app/assets/stylesheets/dashboard.scss */
.settings-modal__body {
  padding: 24px;
}

/* line 3351, 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 3360, app/assets/stylesheets/dashboard.scss */
.settings-modal__body ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

/* line 3364, 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 3375, app/assets/stylesheets/dashboard.scss */
.settings-modal__warning {
  font-weight: 600 !important;
  color: #B91C1C !important;
}

/* line 3380, 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);
  }
}
