.content-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid.one-column {
  grid-template-columns: 1fr;
}

.content-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #161616;
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(138, 43, 226, 0.3);
}

.content-card h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
}

.content-card p,
.content-card li {
  color: rgb(156 163 175);
  line-height: 1.75;
}

.bullet-list {
  margin: 0;
  padding-left: 1.25rem;
}

.stack-form {
  display: grid;
  gap: 1rem;
}

.stack-form label {
  display: grid;
  gap: 0.5rem;
}

.stack-form span {
  color: #fff;
  font-size: 0.95rem;
}

.stack-form input,
.stack-form textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
}

.stack-form input:focus,
.stack-form textarea:focus {
  outline: none;
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.14);
}

.status-box {
  min-height: 1.4em;
  margin: 0;
  color: rgb(156 163 175);
}

.status-box.success {
  color: #4ade80;
}

.status-box.error {
  color: #f87171;
}

.summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-stat {
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-stat span {
  display: block;
  color: rgb(156 163 175);
  font-size: 0.85rem;
}

.mini-stat strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.75rem;
  color: #fff;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
}

td {
  color: rgb(156 163 175);
}

.table-button {
  margin-right: 0.5rem;
}

.table-button.secondary {
  background: #161616;
}

.empty-state {
  color: rgb(156 163 175);
}

@media (max-width: 1024px) {
  .content-grid,
  .content-grid.two-column {
    grid-template-columns: 1fr;
  }
}

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