/* ORAN Presales Tool - UI harmonization layer
   This file intentionally sits after app.css and standardizes typography,
   dashboard/KPI cards, tables, sidebar active state, and compact panels. */

:root {
  --oran-panel-border: #d9e1ea;
  --oran-panel-bg: #ffffff;
  --oran-page-bg: #f3f6f9;
  --oran-table-head: #f5f7fa;
  --oran-muted: #5f6b7a;
  --oran-text: #17202a;
  --oran-accent: #0d6efd;
  --oran-sidebar-active: rgba(255,255,255,0.10);
}

.app-topbar .topbar-title strong {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.sidebar-link.active {
  background: var(--oran-sidebar-active);
  color: #ffffff !important;
  font-weight: 700;
  border-left: 3px solid var(--oran-accent);
  padding-left: calc(1rem - 3px);
}

.app-content,
.app-content .container-fluid {
  font-family: Calibri, Arial, sans-serif;
  color: var(--oran-text);
}

.app-page-header {
  margin-bottom: 1rem;
}

.app-page-header h1,
.app-page-header .h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.app-page-header p,
.app-section-description,
.app-table-description,
.card .text-muted.small,
.text-muted.small {
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--oran-muted) !important;
}

/* Shared section/panel format */
.app-section,
.app-card,
.card.app-card {
  border: 1px solid var(--oran-panel-border) !important;
  border-radius: 0.45rem !important;
  background: var(--oran-panel-bg) !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.app-section-body,
.card.app-card > .card-body {
  padding: 0.85rem 0.95rem !important;
}

.app-section-header,
.app-panel-header,
.app-table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.app-section-title,
.app-table-title,
.card-title,
.card h5,
.card .h5 {
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.25;
  margin: 0 0 0.25rem 0 !important;
}

.app-section-actions,
.app-page-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  white-space: nowrap;
}

/* Shared KPI/dashboard boxes */
.app-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.5rem;
}

.app-kpi-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.app-kpi-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.app-kpi-grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.app-kpi-card,
.app-content .border.rounded,
.summary-card,
.metric-card {
  border: 1px solid var(--oran-panel-border) !important;
  border-radius: 0.38rem !important;
  background: #fff !important;
  min-height: 46px;
  padding: 0.46rem 0.55rem !important;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-kpi-title,
.app-content .border.rounded .text-muted.small,
.summary-card .summary-title,
.metric-card .metric-title {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: var(--oran-muted) !important;
  margin-bottom: 0.14rem !important;
  line-height: 1.15;
}

.app-kpi-value,
.app-content .border.rounded > div:last-child,
.summary-card .summary-value,
.metric-card .metric-value {
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  color: var(--oran-text) !important;
  line-height: 1.2;
}

/* Shared tables */
.app-table,
.app-content table.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin-bottom: 0;
}

.app-table th,
.app-table td,
.app-content table.table th,
.app-content table.table td {
  border: 1px solid var(--oran-panel-border) !important;
  padding: 0.38rem 0.48rem !important;
  vertical-align: middle !important;
  text-align: left;
  line-height: 1.25;
}

.app-table thead th,
.app-content table.table thead th {
  background: var(--oran-table-head) !important;
  color: #101828;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}

.app-content table.table tbody td {
  font-size: 0.84rem !important;
}

.table-responsive {
  margin-top: 0.35rem;
}

/* Buttons and badges compact normalization */
.app-content .btn {
  font-size: 0.82rem;
  line-height: 1.2;
}

.app-content .badge {
  font-size: 0.72rem;
  font-weight: 700;
}

/* Compact baseline summary */
.baseline-compact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.baseline-compact-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.baseline-compact-main strong {
  font-weight: 700;
}

/* Dashboard workflow guide */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.45rem;
}

.workflow-grid > div {
  border: 1px solid var(--oran-panel-border);
  border-radius: 0.38rem;
  padding: 0.5rem 0.6rem;
  background: #fff;
}

.workflow-grid strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.15rem;
}

.workflow-grid span {
  display: block;
  font-size: 0.78rem;
  color: var(--oran-muted);
}

@media (max-width: 1200px) {
  .app-kpi-grid-4,
  .app-kpi-grid-5,
  .app-kpi-grid-6 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}


/* Targeted Site landing page harmonization: compact Edge DC-like dashboard/table format */
.site-summary-grid {
  gap: 0.5rem !important;
  margin-bottom: 0.6rem !important;
}

.site-metric-card {
  min-height: 46px !important;
  padding: 0.46rem 0.55rem !important;
  text-align: left !important;
  border: 1px solid var(--oran-panel-border) !important;
  border-radius: 0.38rem !important;
  background: #fff !important;
}

.site-metric-card span {
  display: block;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: var(--oran-muted) !important;
  line-height: 1.15 !important;
  margin-bottom: 0.14rem !important;
  text-align: left !important;
}

.site-metric-card strong {
  display: block;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  color: var(--oran-text) !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.site-dashboard-section {
  margin-bottom: 0.65rem !important;
  padding: 0.65rem 0.75rem !important;
}

.site-dashboard-section-header {
  margin-bottom: 0.42rem !important;
  padding: 0 !important;
  align-items: flex-start !important;
}

.site-dashboard-section-title,
.site-table-section-header .site-dashboard-section-title {
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  margin: 0 !important;
  color: var(--oran-text) !important;
}

.site-section-comment,
.site-table-description {
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  line-height: 1.22 !important;
  margin: 0 !important;
  color: var(--oran-muted) !important;
}

.site-dashboard-section-title + .site-section-comment,
.site-dashboard-section-header .site-section-comment {
  margin-top: 0.12rem !important;
}

.site-dashboard-row {
  margin-top: 0.45rem !important;
  --bs-gutter-x: 0.5rem !important;
  --bs-gutter-y: 0.5rem !important;
}

.site-dashboard-box,
.card.site-dashboard-box,
.app-card.site-dashboard-box {
  min-height: 46px !important;
  padding: 0.46rem 0.55rem !important;
  text-align: left !important;
  align-items: stretch !important;
  justify-content: center !important;
  border: 1px solid var(--oran-panel-border) !important;
  border-radius: 0.38rem !important;
  background: #fff !important;
}

.site-dashboard-title {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: var(--oran-muted) !important;
  line-height: 1.15 !important;
  margin: 0 0 0.14rem 0 !important;
  text-align: left !important;
}

.site-dashboard-detail,
.site-dashboard-value {
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  color: var(--oran-text) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  text-align: left !important;
}

.site-dashboard-subdetail {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: var(--oran-text) !important;
  line-height: 1.18 !important;
  margin: 0.05rem 0 0 0 !important;
  text-align: left !important;
}

.site-table-panel {
  margin-top: 0 !important;
}

.site-table-section-header {
  padding: 0.55rem 0.75rem !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--oran-panel-border) !important;
  background: #fff !important;
}

.site-table-section-header .site-table-description {
  max-width: 55%;
  margin-left: auto !important;
}

.site-data-table th,
.site-data-table td {
  font-size: 0.84rem !important;
  padding: 0.38rem 0.48rem !important;
  text-align: left !important;
}

.site-data-table thead th {
  background: var(--oran-table-head) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}

/* Site Profile Workspace dashboard cards fix */
.site-profile-workspace-compact .site-profile-kpi-grid {
  display: grid !important;
  gap: 0.5rem !important;
  margin-top: 0.45rem !important;
}

.site-profile-workspace-compact .site-profile-kpi-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.site-profile-workspace-compact .site-profile-kpi-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.site-profile-workspace-compact .site-profile-kpi-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.site-profile-workspace-compact .site-profile-kpi-card {
  border: 1px solid var(--oran-panel-border) !important;
  border-radius: 0.38rem !important;
  background: #fff !important;
  min-height: 46px !important;
  padding: 0.46rem 0.55rem !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.site-profile-workspace-compact .site-profile-kpi-card span {
  display: block !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: var(--oran-muted) !important;
  line-height: 1.15 !important;
  margin-bottom: 0.14rem !important;
  text-align: left !important;
}

.site-profile-workspace-compact .site-profile-kpi-card strong {
  display: block !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  color: var(--oran-text) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  text-align: left !important;
}

.site-profile-workspace-compact .site-workspace-card .card-body {
  padding: 0.65rem 0.75rem !important;
}

.site-profile-workspace-compact .site-panel-header-compact {
  margin-bottom: 0.35rem !important;
}

.site-profile-workspace-compact .site-panel-title {
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  margin: 0 !important;
}

.site-profile-workspace-compact .site-panel-description {
  font-size: 0.82rem !important;
  line-height: 1.22 !important;
  margin: 0.12rem 0 0 0 !important;
  color: var(--oran-muted) !important;
}

.site-profile-workspace-compact .site-inline-ran-summary {
  margin-top: 0.35rem !important;
  margin-bottom: 0.45rem !important;
}

/* Site Profile Workspace header vertical spacing fix */
.site-profile-workspace-compact .site-profile-page-header {
  margin-top: 0.35rem !important;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}
/* Site Profile Workspace header compact spacing */
.site-profile-workspace-compact .site-selected-profile-card-header {
  padding-top: 0.35rem !important;
  padding-bottom: 0.45rem !important;
  margin-top: 0 !important;
  margin-bottom: 0.55rem !important;
  min-height: auto !important;
}

.site-profile-workspace-compact .site-selected-profile-title {
  margin-top: 0 !important;
  margin-bottom: 0.18rem !important;
  line-height: 1.15 !important;
}

.site-profile-workspace-compact .site-selected-profile-subtitle {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.15 !important;
}
/* Global layout fix: keep sidebar fixed while main content scrolls */
.app-shell {
  display: block !important;
  min-height: 100vh !important;
}

.app-sidebar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 266px !important;
  height: 100vh !important;
  max-height: 100vh !important;
  overflow-y: auto !important;
  z-index: 1040 !important;
}

.app-main {
  margin-left: 266px !important;
  width: calc(100% - 266px) !important;
  min-height: 100vh !important;
}

.app-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
}

@media (max-width: 900px) {
  .app-sidebar {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }

  .app-main {
    margin-left: 0 !important;
    width: 100% !important;
  }
}

/* Dashboard portfolio view */
.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem;
}

.dashboard-kpi-number {
  margin-top: 0.25rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.dashboard-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(130px, 0.55fr);
  gap: 0.75rem;
  align-items: end;
}

.dashboard-kpi-grid-technical {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.dashboard-vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.dashboard-vendor-card {
  min-height: 92px;
  padding: 0.9rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.45rem;
  background: var(--bs-body-bg);
}

.dashboard-vendor-card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dashboard-region-accordion .accordion-button {
  gap: 1rem;
  font-size: 0.92rem;
}

.dashboard-region-title {
  min-width: 170px;
  font-weight: 700;
}

.dashboard-region-inline-summary {
  color: var(--bs-secondary-color);
  font-size: 0.82rem;
  font-weight: 400;
}

.dashboard-region-kpis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
}

.dashboard-region-kpis > div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.4rem;
  background: var(--bs-tertiary-bg);
}

.dashboard-region-kpis span {
  color: var(--bs-secondary-color);
  font-size: 0.78rem;
}

.dashboard-region-kpis strong {
  font-size: 0.9rem;
}

@media (max-width: 1400px) {
  .dashboard-kpi-grid,
  .dashboard-kpi-grid-technical {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .dashboard-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-filter-action {
    grid-column: span 2;
  }
  .dashboard-region-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .dashboard-kpi-grid,
  .dashboard-kpi-grid-technical,
  .dashboard-filter-grid,
  .dashboard-vendor-grid,
  .dashboard-region-kpis {
    grid-template-columns: 1fr;
  }
  .dashboard-filter-action {
    grid-column: auto;
  }
  .dashboard-region-inline-summary {
    display: none;
  }
}

/* Dashboard V2 layout */
.dashboard-main-row {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(340px, 1.15fr) minmax(430px, 1.45fr);
  gap: 0.8rem;
  align-items: stretch;
}
.dashboard-main-panel { margin-bottom: 0 !important; }
.dashboard-overview-grid,
.dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.dashboard-filter-stack { display: grid; gap: 0.55rem; }
.dashboard-filter-stack .form-label { margin-bottom: 0.18rem; font-size: 0.78rem; }
.dashboard-filter-stack .form-select { min-height: 34px; padding-top: 0.3rem; padding-bottom: 0.3rem; }
.dashboard-filtered-region-box {
  display: grid;
  grid-template-columns: minmax(120px, 1.4fr) repeat(4, minmax(70px, 1fr));
  gap: 0.4rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.4rem;
  background: var(--bs-tertiary-bg);
  font-size: 0.78rem;
}
.dashboard-filtered-region-name { font-weight: 700; }
.dashboard-location-vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.dashboard-location-vendor-panel {
  border: 1px solid var(--bs-border-color);
  border-radius: 0.45rem;
  background: var(--bs-body-bg);
  overflow: hidden;
}
.dashboard-location-vendor-panel > h3 {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--bs-border-color);
  background: var(--bs-tertiary-bg);
  font-size: 0.92rem;
  font-weight: 700;
}
.dashboard-vendor-category-list { padding: 0.35rem 0.7rem; }
.dashboard-vendor-category-row {
  display: grid;
  grid-template-columns: minmax(90px, 0.75fr) minmax(0, 1.5fr);
  gap: 0.55rem;
  padding: 0.46rem 0;
  border-bottom: 1px solid var(--bs-border-color-translucent);
}
.dashboard-vendor-category-row:last-child { border-bottom: 0; }
.dashboard-vendor-category-name { font-size: 0.78rem; font-weight: 700; }
@media (max-width: 1500px) {
  .dashboard-main-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-summary-panel { grid-column: 1 / -1; }
  .dashboard-location-vendor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .dashboard-main-row,
  .dashboard-location-vendor-grid,
  .dashboard-overview-grid,
  .dashboard-summary-grid { grid-template-columns: 1fr; }
  .dashboard-summary-panel { grid-column: auto; }
  .dashboard-filtered-region-box { grid-template-columns: 1fr 1fr; }
  .dashboard-filtered-region-name { grid-column: 1 / -1; }
}


/* Dashboard V3 - desktop dashboard elements remain horizontal */
.dashboard-page .dashboard-main-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 1.5fr) !important;
  gap: 0.8rem !important;
  align-items: stretch !important;
}

.dashboard-page .dashboard-overview-grid {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(78px, 1fr)) !important;
  gap: 0.5rem !important;
}

.dashboard-page .dashboard-summary-grid {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(78px, 1fr)) !important;
  gap: 0.5rem !important;
}

.dashboard-page .dashboard-filter-grid-v3 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(110px, 0.65fr) !important;
  gap: 0.55rem !important;
  align-items: end !important;
}

.dashboard-page .dashboard-filter-grid-v3 .form-label {
  margin-bottom: 0.18rem !important;
  font-size: 0.78rem !important;
}

.dashboard-page .dashboard-filter-grid-v3 .form-select {
  min-height: 34px !important;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}

.dashboard-page .dashboard-filter-action-v3 {
  align-self: end !important;
}

.dashboard-page .dashboard-location-vendor-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
}

.dashboard-page .dashboard-vendor-category-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.45rem !important;
  padding: 0.6rem !important;
}

.dashboard-page .dashboard-vendor-category-row {
  display: block !important;
  min-width: 0 !important;
  padding: 0.55rem !important;
  border: 1px solid var(--bs-border-color-translucent) !important;
  border-radius: 0.35rem !important;
  background: var(--bs-body-bg) !important;
}

.dashboard-page .dashboard-vendor-category-name {
  margin-bottom: 0.35rem !important;
}

.dashboard-page .dashboard-filtered-region-box {
  display: grid !important;
  grid-template-columns: minmax(130px, 1.5fr) repeat(4, minmax(75px, 1fr)) !important;
  gap: 0.45rem !important;
}

.dashboard-page .app-kpi-card {
  min-width: 0 !important;
  width: auto !important;
}

@media (max-width: 1200px) {
  .dashboard-page .dashboard-main-row {
    grid-template-columns: 1fr !important;
  }
  .dashboard-page .dashboard-overview-grid,
  .dashboard-page .dashboard-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .dashboard-page .dashboard-filter-grid-v3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .dashboard-page .dashboard-filter-action-v3 {
    grid-column: 1 / -1 !important;
  }
  .dashboard-page .dashboard-location-vendor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .dashboard-page .dashboard-overview-grid,
  .dashboard-page .dashboard-summary-grid,
  .dashboard-page .dashboard-filter-grid-v3,
  .dashboard-page .dashboard-location-vendor-grid,
  .dashboard-page .dashboard-vendor-category-list {
    grid-template-columns: 1fr !important;
  }
  .dashboard-page .dashboard-filtered-region-box {
    grid-template-columns: 1fr 1fr !important;
  }
  .dashboard-page .dashboard-filtered-region-name {
    grid-column: 1 / -1 !important;
  }
}

/* Dashboard V6 - preserve horizontal vendor dashboards without clipping names */
.dashboard-page .dashboard-location-vendor-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(360px, 1fr)) !important;
  gap: 0.75rem !important;
  overflow-x: auto !important;
  padding-bottom: 0.25rem !important;
}

.dashboard-page .dashboard-location-vendor-panel {
  min-width: 360px !important;
}

.dashboard-page .dashboard-vendor-category-list {
  grid-template-columns: repeat(3, minmax(105px, 1fr)) !important;
}

.dashboard-page .dashboard-vendor-category-row {
  min-width: 105px !important;
  overflow: visible !important;
}

.dashboard-page .dashboard-vendor-category-name {
  white-space: nowrap !important;
}

.dashboard-page .dashboard-badge-list {
  min-width: 0 !important;
  align-items: flex-start !important;
}

.dashboard-page .dashboard-badge-list .badge {
  display: inline-block !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

@media (max-width: 1200px) {
  .dashboard-page .dashboard-location-vendor-grid {
    grid-template-columns: repeat(4, minmax(340px, 1fr)) !important;
  }
  .dashboard-page .dashboard-location-vendor-panel {
    min-width: 340px !important;
  }
}

@media (max-width: 700px) {
  .dashboard-page .dashboard-location-vendor-grid {
    grid-template-columns: repeat(4, minmax(300px, 1fr)) !important;
  }
  .dashboard-page .dashboard-location-vendor-panel {
    min-width: 300px !important;
  }
  .dashboard-page .dashboard-vendor-category-list {
    grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
  }
}
