.cp-etage-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.cp-etage-list li {
  display: inline-block;
}

.cp-etage-list a {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease-in-out;
}

.cp-etage-list a.active,
.cp-etage-list a:hover {
  background: #2e86de;
  color: #fff;
}

.cp-grid-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cp-grid-header,
.cp-grid-row {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px;
}

.cp-grid-header {
  font-weight: bold;
  background: #f5f5f5;
  cursor: pointer;
}

.cp-grid-cell {
  flex: 1;
  text-align: center;
}
