@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: #2563eb;
  border-color: #2563eb;
  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__body {
  padding: 0 24px 24px;
}

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

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

/* line 432, 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 442, 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 454, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__party-icon {
  color: #637083;
}

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

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

/* line 469, 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 477, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__party-name {
  font-size: 15px;
  font-weight: 600;
  color: #141c25;
}

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

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

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

/* line 497, 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 508, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__claim-icon {
  color: #64748b;
}

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

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

/* line 523, 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 531, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__claim-amount {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

/* line 537, 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 548, app/assets/stylesheets/components/_dashboard_components.scss */
.case-summary-card__stage-icon {
  color: #64748b;
}

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

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

/* line 563, 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 571, 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 584, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  /* line 591, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__title-group {
    gap: 8px;
  }
  /* line 595, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__title {
    font-size: 16px;
    line-height: 24px;
  }
  /* line 600, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }
  /* line 607, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__type-badge {
    padding: 4px 12px;
    font-size: 10px;
  }
  /* line 612, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__new-case-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  /* line 617, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__new-case-btn span:not(.sr-only) {
    display: none;
  }
  /* line 622, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__body {
    padding: 0 16px 16px;
  }
  /* line 626, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__text {
    font-size: 14px;
    line-height: 1.6;
  }
  /* line 631, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__footer {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  /* line 637, 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 645, 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 653, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-summary-card__footer {
    flex-direction: column;
  }
  /* line 657, 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 670, 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, #667eea 0%, #764ba2 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(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

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

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

/* line 694, 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, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

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

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

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

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

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

/* line 734, 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 746, 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 751, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party__icon {
  font-size: 2rem;
  filter: grayscale(0.3);
}

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

/* line 762, 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 770, app/assets/stylesheets/components/_dashboard_components.scss */
.case-party__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a202c;
}

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

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

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

/* line 791, 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(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  margin-left: auto;
}

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

/* line 807, 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 812, app/assets/stylesheets/components/_dashboard_components.scss */
.case-amount__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 818, 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 826, 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 791, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-amount {
    width: 100%;
    margin-left: 0;
  }
}

/* line 840, 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 850, 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 855, 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 860, app/assets/stylesheets/components/_dashboard_components.scss */
.case-stage__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 866, 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 874, 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 840, app/assets/stylesheets/components/_dashboard_components.scss */
  .case-stage {
    width: 100%;
  }
}

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

/* line 894, 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 908, app/assets/stylesheets/components/_dashboard_components.scss */
.btn-new-case svg {
  width: 14px;
  height: 14px;
}

/* line 913, 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 919, app/assets/stylesheets/components/_dashboard_components.scss */
.btn-new-case:active {
  transform: translateY(0);
}

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

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

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

/* ===== Variables ===== */
/* line 17, app/assets/stylesheets/dashboard.scss */
:root {
  --color-primary: #3B82F6;
  --color-primary-dark: #2563EB;
  --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 48, app/assets/stylesheets/dashboard.scss */
.dashboard-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--bg-secondary);
  position: relative;
}

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

/* line 63, 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 75, 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 83, 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 92, 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 101, app/assets/stylesheets/dashboard.scss */
.case-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 427, 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 436, app/assets/stylesheets/dashboard.scss */
.metric-card__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
}

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

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

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

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

/* line 469, 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 479, app/assets/stylesheets/dashboard.scss */
.progress-grade--a {
  color: #22C55E;
}

/* line 483, app/assets/stylesheets/dashboard.scss */
.progress-grade--b {
  color: #84CC16;
}

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

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

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

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

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

/* line 510, 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 519, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill.progress-orange {
  stroke: var(--color-orange);
}

/* line 523, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill.progress-amber {
  stroke: var(--color-amber);
}

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

/* line 531, app/assets/stylesheets/dashboard.scss */
.progress-ring-fill.progress-cyan {
  stroke: #06B6D4;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 1056, 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 1064, 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 1073, 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 1080, 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 1088, app/assets/stylesheets/dashboard.scss */
.analysis-content p,
.fundamental-content p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--text-primary);
}

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

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

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

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

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

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

/* line 1143, 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: 16px;
}

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

/* line 1157, 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 1166, app/assets/stylesheets/dashboard.scss */
.criteria-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 1668, 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 1686, 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 1695, 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 1719, 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 1726, app/assets/stylesheets/dashboard.scss */
.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mobile nav item hover/active states */
/* line 1911, 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 1919, app/assets/stylesheets/dashboard.scss */
  .lit-e-gator-toggle {
    display: none !important;
  }
  /* Chatbot popup - full screen on mobile */
  /* line 1924, 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 1940, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section {
    padding: 16px;
  }
  /* line 1943, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 1949, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section .progress-indicator {
    width: 100%;
  }
  /* line 1952, 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 1961, app/assets/stylesheets/dashboard.scss */
  .strategic-steps--horizontal {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  /* Step Card V2 - Mobile optimizations */
  /* line 1967, app/assets/stylesheets/dashboard.scss */
  .step-card-v2 {
    padding: 14px;
  }
  /* line 1970, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__description {
    font-size: 13px;
  }
  /* line 1974, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__label {
    font-size: 12px;
  }
  /* Dashboard grid mobile layout */
  /* line 1980, app/assets/stylesheets/dashboard.scss */
  .dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* line 1988, app/assets/stylesheets/dashboard.scss */
  .dashboard-content {
    width: 100%;
  }
  /* line 1992, app/assets/stylesheets/dashboard.scss */
  .dashboard-sidebar {
    width: 100%;
  }
  /* Metrics cards - stack on mobile */
  /* line 1997, app/assets/stylesheets/dashboard.scss */
  .metric-cards {
    flex-direction: column;
  }
  /* line 2001, app/assets/stylesheets/dashboard.scss */
  .metric-card {
    width: 100%;
  }
  /* Case header adjustments for mobile */
  /* line 2006, app/assets/stylesheets/dashboard.scss */
  .case-header-card {
    padding: 16px;
  }
  /* Task Manager - Mobile */
  /* line 2011, app/assets/stylesheets/dashboard.scss */
  .task-manager-widget {
    padding: 16px;
  }
  /* line 2015, app/assets/stylesheets/dashboard.scss */
  .task-item {
    padding: 10px;
    flex-wrap: wrap;
    gap: 8px;
  }
  /* line 2021, app/assets/stylesheets/dashboard.scss */
  .task-info {
    flex: 1;
    min-width: 60%;
  }
  /* line 2026, app/assets/stylesheets/dashboard.scss */
  .task-actions {
    gap: 6px;
  }
  /* line 2030, app/assets/stylesheets/dashboard.scss */
  .task-action-btn {
    padding: 4px;
    font-size: 12px;
  }
  /* line 2035, app/assets/stylesheets/dashboard.scss */
  .task-complete-btn,
.task-complete-badge {
    width: 28px;
    height: 28px;
  }
  /* Tabs - scrollable on mobile */
  /* line 2042, app/assets/stylesheets/dashboard.scss */
  [data-name="Tabs"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  /* line 2048, app/assets/stylesheets/dashboard.scss */
  [data-name="Tabs"]::-webkit-scrollbar {
    display: none;
  }
}

/* Extra small screens (< 400px) */
@media (max-width: 400px) {
  /* line 2056, app/assets/stylesheets/dashboard.scss */
  .strategic-advice-section {
    padding: 12px;
  }
  /* line 2060, app/assets/stylesheets/dashboard.scss */
  .step-card-v2 {
    padding: 12px;
  }
  /* line 2063, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__main {
    gap: 8px;
  }
  /* line 2067, app/assets/stylesheets/dashboard.scss */
  .step-card-v2__description {
    font-size: 12px;
    line-height: 1.4;
  }
  /* line 2074, app/assets/stylesheets/dashboard.scss */
  .progress-indicator .progress-text {
    font-size: 12px;
  }
  /* line 2080, app/assets/stylesheets/dashboard.scss */
  .task-info .task-title {
    font-size: 13px;
  }
  /* line 2084, app/assets/stylesheets/dashboard.scss */
  .task-info .task-date {
    font-size: 11px;
  }
}

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

/* line 2106, 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 2116, 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 2124, 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 2133, 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 2147, app/assets/stylesheets/dashboard.scss */
.share-modal__close:hover {
  background: #E4E7EC;
}

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

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

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

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

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

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

/* line 2205, 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 2215, 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 2223, 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 2236, app/assets/stylesheets/dashboard.scss */
.share-modal__badge-remove:hover {
  background: #1e6fc8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 2667, app/assets/stylesheets/dashboard.scss */
.settings-form__button--danger:hover:not(:disabled) {
  background: #E63939;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 2829, 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 2838, 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 2849, 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 2861, app/assets/stylesheets/dashboard.scss */
.settings-toggle--on {
  background: #2E7FD8;
}

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

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

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

/* line 2885, 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 2896, 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 2906, 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 2917, 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 2925, app/assets/stylesheets/dashboard.scss */
.delete-modal__header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* line 2931, 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 2940, 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 2949, 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 2963, app/assets/stylesheets/dashboard.scss */
.delete-modal__close:hover {
  background: #E4E7EC;
}

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

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

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

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

/* line 3025, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--delete {
  background: #FF4D4D;
  border: 1px solid #FF4D4D;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(20, 28, 37, 0.04);
}

/* line 3031, app/assets/stylesheets/dashboard.scss */
.delete-modal__btn--delete:hover:not(:disabled) {
  background: #E63E3E;
  border-color: #E63E3E;
}

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

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

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

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

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

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

/* Settings Modal */
/* line 3113, 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 3124, 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 3134, 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 3146, 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 3154, 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 3163, 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 3176, app/assets/stylesheets/dashboard.scss */
.settings-modal__close:hover {
  background: #F2F4F7;
}

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

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

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

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