.deployment-dashboard {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  border: 1px solid #e9ecef;
}

.dashboard-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-item.full-width {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.status-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #6c757d;
  letter-spacing: 0.5px;
}

.status-value {
  font-size: 14px;
  color: #212529;
  font-weight: 500;
}

.status-value a {
  color: #1a73e8;
  text-decoration: none;
}

.status-value a:hover {
  text-decoration: underline;
}

.status-success { color: #28a745; }
.status-failure { color: #dc3545; }
.status-pending { color: #ffc107; }
.status-unknown { color: #6c757d; }

.commit-msg {
  font-weight: 400;
  color: #495057;
}

.run-link {
  display: inline-block;
  padding: 8px 16px;
  background: #1a1a2e;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s;
}

.run-link:hover {
  background: #2d2d44;
  color: white;
}

@media (max-width: 480px) {
  .status-grid {
    grid-template-columns: 1fr;
  }
}
