.feature-status {
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.supported {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.not-supported {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.demo-grid {
  margin-top: 15px;
  padding: 15px;
  border: 2px dashed #ccc;
  min-height: 100px;
}

@supports (display: grid) {
  .demo-grid.grid-enabled {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border-color: #28a745;
    background: #f8fff9;
  }
  
  .demo-grid.grid-enabled .grid-item {
    background: #28a745;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
  }
}