/* Sample Application Modal */
.sample-app-modal .modal-dialog {
  max-width: 1140px;
  margin: 30px auto;
}

.sample-app-modal .modal-content {
  border: 1px solid #F2F2F2;
  border-radius: 12px;
  overflow: visible;
  font-family: 'Outfit', sans-serif;
  position: relative;
  box-shadow: 0px 8px 24px -4px rgba(0, 0, 0, 0.12);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.sample-app-modal .modal-header {
  border-bottom: none;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.sample-app-modal .sam-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 8px;
}

.sample-app-modal .sam-header-top h5 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1c1c1c;
  margin: 0;
}

.sample-app-modal .sam-header-top .sam-applicant-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #FEA327;
  background: #FEA32712;
  border: 1px solid #FEA32730;
  padding: 2px 10px;
  border-radius: 99px;
  margin-left: 10px;
}

.sample-app-modal .sam-header-top .sam-tour-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: #FEA327;
  background: #FEA32710;
  border: 1px solid #FEA32740;
  padding: 5px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 12px;
  transition: background 0.2s;
}

.sample-app-modal .sam-header-top .sam-tour-btn:hover {
  background: #FEA32720;
}

/* Tabs */
.sample-app-modal .sam-tabs {
  display: flex;
  padding: 0 24px;
  gap: 0;
  border-bottom: 1px solid #F2F2F2;
  list-style: none;
  margin: 0;
}

.sample-app-modal .sam-tabs li {
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #9CA3AF;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sample-app-modal .sam-tabs li:hover {
  color: #6e6e6e;
}

.sample-app-modal .sam-tabs li.active {
  color: #FEA327;
  border-bottom-color: #FEA327;
  font-weight: 600;
}

.sample-app-modal .sam-tabs li i {
  font-size: 13px;
}

/* Modal Body */
.sample-app-modal .modal-body {
  padding: 0 24px 24px;
  overflow-y: auto;
  flex: 1 1 auto;
}

/* Tab Panes */
.sample-app-modal .sam-pane {
  display: none;
  padding-top: 16px;
}

.sample-app-modal .sam-pane.active {
  display: block;
}

/* Status Banner */
.sam-status-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #22C55E12;
  border: 1px solid #22C55E30;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
}

.sam-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
}

.sam-status-text {
  font-weight: 600;
  font-size: 0.85rem;
  color: #22C55E;
  margin-left: 8px;
}

.sam-status-date {
  font-size: 0.72rem;
  color: #B0B5BD;
}

/* Two Column Grid */
.sam-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 767px) {
  .sam-two-col {
    grid-template-columns: 1fr;
  }
}

/* Info Cards */
.sam-info-card {
  background: #fff;
  border: 1px solid #F2F2F2;
  border-radius: 10px;
  overflow: hidden;
}

.sam-info-card-header {
  background: #FAFAFA;
  padding: 12px 16px;
  border-bottom: 1px solid #F2F2F2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sam-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FEA327, #F59E0B);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sam-avatar.sm {
  width: 24px;
  height: 24px;
  font-size: 0.6rem;
  background: #F3F4F6;
  color: #9CA3AF;
}

.sam-info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid #F8F8F8;
}

.sam-info-row:last-child {
  border-bottom: none;
}

.sam-info-label {
  font-size: 0.8rem;
  color: #9CA3AF;
}

.sam-info-value {
  font-size: 0.8rem;
  color: #1c1c1c;
  font-weight: 500;
}

.sam-section-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9CA3AF;
  margin-bottom: 6px;
  padding: 8px 16px 0;
}

.sam-co-applicant-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-bottom: 1px solid #F8F8F8;
}

.sam-co-applicant-row:last-child {
  border-bottom: none;
}

.sam-role-badge {
  font-size: 0.65rem;
  font-weight: 500;
  color: #6e6e6e;
  background: #F3F4F6;
  padding: 1px 8px;
  border-radius: 99px;
  margin-left: auto;
}

/* Property Card Header */
.sam-property-header {
  background: #FAFAFA;
  padding: 12px 16px;
  border-bottom: 1px solid #F2F2F2;
}

.sam-property-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1c1c1c;
}

.sam-property-address {
  font-size: 0.8rem;
  color: #6e6e6e;
  margin-top: 2px;
}

.sam-unit-row {
  padding: 10px 16px;
  border-bottom: 1px solid #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sam-unit-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #1c1c1c;
}

.sam-unit-specs {
  display: flex;
  gap: 14px;
}

.sam-unit-spec {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #6e6e6e;
}

.sam-unit-spec i {
  font-size: 0.72rem;
  color: #9CA3AF;
}

.sam-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
}

.sam-price-label {
  font-size: 0.8rem;
  color: #9CA3AF;
}

.sam-price-value {
  font-size: 0.88rem;
  color: #1c1c1c;
  font-weight: 600;
}

.sam-price-value span {
  font-weight: 400;
  font-size: 0.72rem;
  color: #9CA3AF;
}

/* Application Tab */
.sam-section-title {
  font-size: 1.063rem;
  font-weight: 600;
  color: #1b2228;
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cfcfcf;
}

.sam-section-title:first-child {
  margin-top: 0;
}

.sam-field-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}

@media (max-width: 767px) {
  .sam-field-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sam-field {
  margin-bottom: 8px;
}

.sam-field-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #3c3c3c;
  margin-bottom: 2px;
}

.sam-field-value {
  font-size: 0.875rem;
  color: #1c1c1c;
  font-weight: 400;
}

/* Income Ratio Card */
.sam-ratio-card {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.sam-ratio-card.meets {
  background: #22C55E08;
  border: 1px solid #22C55E25;
}

.sam-ratio-label {
  font-size: 0.78rem;
  color: #6E6E6E;
  margin-bottom: 4px;
}

.sam-ratio-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22C55E;
}

.sam-ratio-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  background: #22C55E15;
  color: #22C55E;
  margin-left: 12px;
}

.sam-ratio-stats {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.sam-ratio-stat {
  text-align: center;
}

.sam-ratio-stat-label {
  font-size: 0.7rem;
  color: #6E6E6E;
}

.sam-ratio-stat-value {
  font-weight: 700;
  color: #1C1C1C;
  font-size: 0.95rem;
}

/* Employment Card */
.sam-employ-card {
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
}

.sam-employ-title {
  font-weight: 600;
  color: #1c1c1c;
}

.sam-employ-title .light {
  font-weight: 400;
  color: #6e6e6e;
}

.sam-employ-details {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.sam-employ-detail {
  font-size: 0.875rem;
  font-weight: 400;
  color: #3c3c3c;
}

/* Employ Details Row (matches operator portal .employ_details pattern) */
.sam-employ-detail-row {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.sam-employ-detail-label {
  font-weight: 400;
  font-size: 0.875rem;
  color: #3C3C3C;
}

.sam-employ-detail-value {
  font-weight: 400;
  font-size: 0.875rem;
  color: #1C1C1C;
}

/* Residential History Card */
.sam-residence-card {
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
}

/* Reports Tab */
.sam-reports-layout {
  display: flex;
  gap: 0;
  min-height: 400px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.sam-reports-sidebar {
  min-width: 240px;
  max-width: 240px;
  border-right: 1px solid #e0e0e0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.sam-report-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  height: 48px;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.2s;
  position: relative;
}

.sam-report-item:hover {
  background: #f59e0b14;
}

.sam-report-item.active {
  background: #f59e0b14;
}

.sam-report-item.locked {
  opacity: 0.5;
}

.sam-report-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fea327;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sam-report-icon img {
  width: 14px;
  height: 14px;
}

.sam-report-icon svg {
  width: 14px;
  height: 14px;
}

.sam-report-name {
  font-size: 13px;
  font-weight: 500;
  color: #1c1c1c;
  margin: 0;
  line-height: 18px;
}

.sam-report-source {
  font-size: 11px;
  color: #6e6e6e;
  margin: 0;
  line-height: 16px;
}

.sam-report-lock {
  position: absolute;
  right: 10px;
  font-size: 0.7rem;
  color: #9CA3AF;
}

.sam-reports-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

/* Report Content Panels */
.sam-report-panel {
  display: none;
}

.sam-report-panel.active {
  display: block;
}

/* Credit Score Card */
.sam-score-card {
  background: linear-gradient(135deg, #1c1c1c, #2d2d2d);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.sam-score-label {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sam-score-number {
  font-size: 3rem;
  font-weight: 700;
  margin: 4px 0;
}

.sam-score-rating {
  font-size: 0.85rem;
  font-weight: 600;
  color: #22C55E;
}

/* Score Factors */
.sam-factor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #F8F8F8;
}

.sam-factor-name {
  font-size: 0.82rem;
  color: #1c1c1c;
}

.sam-factor-bar-wrap {
  flex: 1;
  margin: 0 16px;
  height: 6px;
  background: #F3F4F6;
  border-radius: 3px;
  overflow: hidden;
}

.sam-factor-bar {
  height: 100%;
  border-radius: 3px;
  background: #FEA327;
}

.sam-factor-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1c1c1c;
  min-width: 36px;
  text-align: right;
}

/* Tradelines Table */
.sam-tradelines-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.8rem;
}

.sam-tradelines-table th {
  text-align: left;
  padding: 10px 12px;
  background: #FAFAFA;
  font-weight: 600;
  color: #6E6E6E;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #F2F2F2;
}

.sam-tradelines-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #F8F8F8;
  color: #1c1c1c;
}

.sam-status-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.sam-status-tag.open {
  background: #22C55E15;
  color: #22C55E;
}

.sam-status-tag.closed {
  background: #9CA3AF15;
  color: #9CA3AF;
}

/* No Records Found */
.sam-no-records {
  text-align: center;
  padding: 40px 20px;
}

.sam-no-records-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.sam-no-records h6 {
  font-weight: 600;
  color: #22C55E;
  margin-bottom: 4px;
}

.sam-no-records p {
  font-size: 0.82rem;
  color: #9CA3AF;
}

/* Locked Report Overlay */
.sam-locked-overlay {
  text-align: center;
  padding: 60px 30px;
}

.sam-locked-icon {
  font-size: 2.5rem;
  color: #D0D0D0;
  margin-bottom: 16px;
}

.sam-locked-overlay h6 {
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 8px;
}

.sam-locked-overlay p {
  font-size: 0.85rem;
  color: #6E6E6E;
  margin-bottom: 20px;
}

.sam-locked-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.sam-locked-btn {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #FEA327;
  color: #FEA327;
  background: transparent;
  transition: all 0.2s;
}

.sam-locked-btn:hover {
  background: #FEA327;
  color: #fff;
}

.sam-locked-btn.primary {
  background: #FEA327;
  color: #fff;
}

.sam-locked-btn.primary:hover {
  background: #e8921f;
}

/* History Tab */
.sam-history-cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sam-history-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sam-history-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sam-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 0;
  gap: 12px;
}

.sam-history-landlord {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sam-history-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FEA327, #FF8C00);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sam-history-landlord-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1c1c1c;
  margin-bottom: 0;
  line-height: 1.3;
}

.sam-history-date-range {
  font-size: 0.72rem;
  color: #9CA3AF;
  font-weight: 400;
}

.sam-history-badges {
  display: flex;
  gap: 6px;
  align-items: center;
}

.sam-result-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.sam-result-badge.pass {
  background: #F0FDF4;
  color: #22C55E;
  border: 1px solid #22C55E;
}

.sam-result-badge.pending {
  background: #f9fafb;
  color: #9CA3AF;
  border: 1px solid #e5e7eb;
}

.sam-history-body {
  padding: 10px 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sam-history-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #6e6e6e;
}

.sam-history-contact i {
  font-size: 0.7rem;
  color: #9CA3AF;
  width: 14px;
  text-align: center;
}

.sam-history-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 14px;
  border-top: 1px solid #f3f4f6;
}

.sam-history-survey-btn {
  background: transparent;
  border: 1px solid #FEA327;
  color: #FEA327;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sam-history-survey-btn:hover {
  background: #FEA327;
  color: #fff;
}

.sam-history-survey-sent {
  font-size: 0.72rem;
  color: #22C55E;
  font-weight: 500;
}

.sam-history-view-survey {
  font-size: 0.72rem;
  font-weight: 600;
  color: #FEA327;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.sam-history-view-survey:hover {
  color: #e08f1f;
}

/* Survey Q&A */
.sam-survey-qa {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sam-survey-q {
  font-size: 0.8rem;
  color: #3C3C3C;
  flex: 1;
}

.sam-survey-a {
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.sam-survey-a.good {
  color: #22C55E;
}

.sam-survey-a.bad {
  color: #EF4444;
}

.sam-survey-chevron.open {
  transform: rotate(90deg);
}

/* Sample Banner */
.sam-sample-banner {
  background: #FEA32712;
  border-bottom: 1px solid #FEA32725;
  padding: 8px 24px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: #B8860B;
  border-radius: 12px 12px 0 0;
}

/* Income Trend Metric Badges */
.sam-metric-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid;
  background: #fff;
  white-space: nowrap;
}

.sam-metric-badge.good {
  background: #22C55E15;
  color: #22C55E;
  border: 1px solid #22C55E30;
}

.sam-metric-badge.warn {
  background: #FEA32715;
  color: #FEA327;
  border: 1px solid #FEA32730;
}

.sam-metric-badge.bad {
  background: #EF444415;
  color: #EF4444;
  border: 1px solid #EF444430;
}

/* Interactive Paystub Bars */
.sam-paystub-bar rect {
  transition: opacity 0.15s;
}

.sam-paystub-bar:hover rect {
  opacity: 0.8;
}

.sam-paystub-bar.active rect {
  filter: brightness(1.1);
}

.sam-paystub-bar.active {
  outline: 2px solid #FEA327;
  outline-offset: 2px;
  border-radius: 3px;
}

/* Interactive Shift Bars */
.sam-shift-bar rect {
  transition: opacity 0.15s;
}

.sam-shift-bar:hover rect {
  opacity: 0.8;
}

.sam-shift-bar.active rect {
  filter: brightness(1.1);
}

.sam-shift-bar.active {
  outline: 2px solid #FEA327;
  outline-offset: 2px;
  border-radius: 3px;
}

/* Spotlight Tour */
.sam-tour-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1050;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 12px;
}

.sam-tour-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* When no target is highlighted, show a dim background on the backdrop itself */
.sam-tour-backdrop.active.no-target {
  background: rgba(0, 0, 0, 0.45);
}

/* Highlighted target element */
.sam-spotlight-target {
  position: relative;
  z-index: 1051 !important;
  box-shadow: 0 0 0 4px #FEA327, 0 0 0 9999px rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  pointer-events: auto;
}

/* Tour Tooltip */
.sam-tour-tooltip {
  position: fixed;
  z-index: 1070;
  background: #fff;
  border-radius: 12px;
  padding: 24px 24px 20px;
  width: 380px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}

.sam-tour-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.sam-tour-tooltip h6 {
  font-weight: 700;
  font-size: 1rem;
  color: #1c1c1c;
  margin: 0 0 6px;
}

.sam-tour-tooltip p {
  font-size: 0.85rem;
  color: #6E6E6E;
  margin: 0 0 16px;
  line-height: 1.5;
}

.sam-tour-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #9CA3AF;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: color 0.2s;
}

.sam-tour-close:hover {
  color: #1c1c1c;
}

/* Step Dot Indicators */
.sam-tour-counter {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}

.sam-tour-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E7EB;
  transition: background 0.2s, transform 0.2s;
}

.sam-tour-dot.active {
  background: #FEA327;
  transform: scale(1.25);
}

.sam-tour-dot.done {
  background: #FEA32780;
}

/* Tour Action Buttons */
.sam-tour-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.sam-tour-btn-prev {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6E6E6E;
  background: none;
  border: 1px solid #E5E7EB;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.sam-tour-btn-prev:hover {
  border-color: #D1D5DB;
  color: #1c1c1c;
}

.sam-tour-btn-next {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: #FEA327;
  border: none;
  padding: 7px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
  white-space: nowrap;
}

.sam-tour-btn-next:hover {
  background: #e8921f;
}

.sam-tour-btn-next.cta {
  background: #FEA327;
  padding: 7px 24px;
}

.sam-tour-btn-next.cta:hover {
  background: #e8921f;
}

/* CTA Section at Bottom */
.sam-modal-cta {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid #F2F2F2;
  background: #FAFAFA;
  border-radius: 0 0 12px 12px;
}

.sam-modal-cta p {
  font-size: 0.85rem;
  color: #6E6E6E;
  margin-bottom: 12px;
}

.sam-modal-cta .btn-yellow {
  font-size: 0.88rem;
}

@media (max-width: 767px) {
  .sample-app-modal .modal-dialog {
    margin: 10px;
  }

  .sam-reports-layout {
    flex-direction: column;
  }

  .sam-reports-sidebar {
    min-width: unset;
    max-width: unset;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    flex-direction: row;
    overflow-x: auto;
  }

  .sam-report-item {
    white-space: nowrap;
    border-bottom: none;
    border-right: 1px solid #F8F8F8;
  }

  .sam-field-grid {
    grid-template-columns: 1fr;
  }
}
