/* Extra CSS for Documentation */
.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.grid.cards > div {
  background: var(--md-default-bg-color);
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.4rem;
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid.cards > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.grid.cards h3 {
  margin-top: 0;
  color: var(--md-primary-fg-color);
}

/* Code blocks */
.highlight pre {
  background: var(--md-code-bg-color) !important;
}

/* Admonitions styling */
.admonition {
  margin: 1rem 0;
}

/* Table improvements */
table {
  width: 100%;
  margin: 1rem 0;
}

th {
  background: var(--md-primary-fg-color);
  color: white;
}

/* Notification status indicators */
.status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.status-success { background: #10b981; }
.status-warning { background: #f59e0b; }
.status-error { background: #ef4444; }
.status-info { background: #3b82f6; }
