.sidebar.sidebar.collapsed ~ .main-content {
  margin-left: 60px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.orders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.order {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.order h3 {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.order h2 {
  font-size: 2rem;
  font-weight: bold;
}

#blue {
  color: #007bff;
}

#orange {
  color: #fd7e14;
}

#green {
  color: #28a745;
}

.chart-section {
  margin-top: 20px;
  margin-bottom: 30px;
}

.chart-container {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.chart-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.performance-metric {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  margin-top: 10px;
}

.metric-up {
  color: #28a745;
}
.metric-down {
  color: #dc3545;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.status-delivered {
  background: #d4edda;
  color: #155724;
}
.status-transit {
  background: #cce5ff;
  color: #004085;
}
.status-pending {
  background: #fff3cd;
  color: #856404;
}
.status-delayed {
  background: #f8d7da;
  color: #721c24;
}


