/* Implementation Governance - custom overrides */
:root {
  --gov-border-subtle: #dee2e6;
  --gov-bg-subtle: #f8f9fa;
}

body {
  background-color: var(--gov-bg-subtle);
}

.navbar-brand {
  font-weight: 600;
}

.view {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.table th {
  font-weight: 600;
  color: #495057;
}

.badge-depends {
  font-size: 0.75rem;
}

.card.border-warning .card-body { background-color: rgba(255, 193, 7, 0.08); }
.card.border-danger .card-body { background-color: rgba(220, 53, 69, 0.08); }
.card.border-info .card-body { background-color: rgba(13, 202, 240, 0.08); }
.card.border-primary .card-body { background-color: rgba(13, 110, 253, 0.08); }

.coo-list-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gov-border-subtle);
}
.coo-list-item:last-child { border-bottom: 0; }

#alerts-banner .alert { margin-bottom: 0; }

.btn-group .btn { white-space: nowrap; }

@media (max-width: 768px) {
  .table-responsive { font-size: 0.875rem; }
  .table th, .table td { padding: 0.5rem; }
}
