.kinbase-dashboard {
  padding: 24px;
  background: #f4f6f9;
}

.kinbase-dashboard-header {
  margin-bottom: 22px;
}

.kinbase-dashboard-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.kinbase-dashboard-header p {
  color: #667085;
  font-size: 15px;
  margin: 0;
}


.kinbase-dashboard-filter {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 22px;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.08);
}

.kinbase-filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.kinbase-filter-item label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475467;
  margin-bottom: 6px;
}

.kinbase-filter-item input,
.kinbase-filter-item select {
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 14px;
}

.kinbase-filter-action button {
  height: 40px;
  padding: 8px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 800px) {
  .kinbase-filter-row {
    grid-template-columns: 1fr;
  }
}



.kinbase-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 20px;
}

.kinbase-kpi-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
  min-height: 180px;
  overflow: hidden;
}

.kinbase-kpi-label {
  font-size: 14px;
  color: #475467;
  font-weight: 700;
  margin-bottom: 14px;
}

.kinbase-kpi-number,
.kinbase-kpi-card .views-field,
.kinbase-kpi-card .field-content {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.kinbase-kpi-footer {
  margin-top: 14px;
  font-size: 13px;
  color: #667085;
}


.kinbase-dashboard-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.kinbase-dashboard-number {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
}

.kinbase-dashboard-label {
  font-size: 15px;
  font-weight: 600;
  color: #666;
  margin-top: 6px;
}

.kinbase-dashboard-graph {
  flex: 1;
  min-width: 180px;
}

.kinbase-dashboard-metric {
  min-width: 220px;
}

@media (max-width: 768px) {
  .kinbase-dashboard-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .kinbase-dashboard-number {
    font-size: 34px;
  }

  .kinbase-dashboard-graph {
    width: 100%;
  }
}









/* =======================================================
   Executive Dashboard - Monthly Revenue Chart
   ======================================================= */

.kinbase-chart-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  margin-top: 24px;
  box-shadow: 0 8px 22px rgba(16,24,40,.08);
}

.kinbase-chart-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.kinbase-simple-chart {
  margin-top: 12px;
}

.kinbase-chart-row {
  display: grid;
  grid-template-columns: 120px 1fr 140px;
  gap: 15px;
  align-items: center;
  margin-bottom: 14px;
}

.kinbase-chart-month {
  font-weight: 600;
}

.kinbase-chart-bar-wrap {
  background: #eef2f6;
  border-radius: 50px;
  overflow: hidden;
  height: 18px;
}

.kinbase-chart-bar {
  background: #1e88e5;
  height: 18px;
  border-radius: 50px;
}

.kinbase-chart-value {
  text-align: right;
  font-weight: 600;
}


.kinbase-chart-card {
  height: 420px;
}

#monthlyRevenueChart {
  display: block;
  width: 100% !important;
  height: 330px !important;
}

/* Dashboard Chart Card */
.kinbase-chart-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  height: 420px;
}

/* Chart Title */
.kinbase-chart-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Chart Canvas */
#monthlyRevenueChart {
  display: block;
  width: 100% !important;
  height: 330px !important;
}


