/* Dashboard native app feel */

.dashboard-native-wrap {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.dashboard-native-topstrip {
  position: sticky;
  top: 14px;
  z-index: 10;
}

.dashboard-native-greeting {
  display: grid;
  gap: 4px;
}

.dashboard-native-greeting span {
  color: #6b7280;
  font-size: 0.95rem;
}

.dashboard-native-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-native-hero {
  border-radius: 24px;
}

.dashboard-native-stats {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.dashboard-native-grid {
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
  align-items: start;
}

.dashboard-native-main,
.dashboard-native-side,
.dashboard-native-main .detail-header,
.dashboard-native-side .content-card {
  min-width: 0;
}

.dashboard-native-tablewrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
}

.dashboard-native-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}

.dashboard-native-table th,
.dashboard-native-table td {
  word-break: break-word;
}

.dashboard-native-table th:nth-child(2),
.dashboard-native-table td:nth-child(2) {
  width: 24%;
}

.dashboard-native-table th:nth-child(8),
.dashboard-native-table td:nth-child(8) {
  width: 15%;
}

.dashboard-native-side .content-card {
  border-radius: 22px;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.summary-list li:last-child {
  border-bottom: none;
}

@media (max-width: 1180px) {
  .dashboard-native-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dashboard-native-topstrip {
    position: static;
  }

  .dashboard-native-pills {
    width: 100%;
  }

  .dashboard-native-pills .app-shell-pill {
    width: 100%;
    justify-content: center;
  }

  .dashboard-native-table {
    table-layout: auto;
  }
}
