.vendor-summary-dashboard {
  background: #f9fafb;
  padding: 20px;
  border-radius: 10px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.filter-bar label {
  font-weight: 600;
}

.filter-bar select,
.filter-bar input {
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.filter-bar button {
  background: #0073aa;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-bar button:hover {
  background: #005b8e;
}

.chart-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.chart-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.vendor-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.vendor-table th,
.vendor-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.vendor-table th {
  background-color: #f1f1f1;
}

.no-data {
  text-align: center;
  color: #999;
  font-style: italic;
  margin-top: 20px;
}
