.warehouse-layer-option {
  padding: 0.75rem 1rem;
  border: 2px solid #2b2b2b;
  border-radius: 6px;
  cursor: pointer;
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-weight: 500;
  box-shadow: none;
  position: relative;
  text-align: center;
  will-change: transform, box-shadow;
}

.warehouse-layer-option:hover {
  transform: translateY(-4px);
  box-shadow: -10px 10px 0 #2b2b2b;
}

.warehouse-layer-option.active {
  background: #e3f2fd;
  border-color: #1c5ca7;
  font-weight: 600;
  transform: translateY(-4px);
  box-shadow: -10px 10px 0 #1c5ca7;
}

/* Prevent table cell wrapping - applies to all tables */
table {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

table td,
table th {
  white-space: nowrap;
  padding: 8px 12px;
}

/* Specifically for tables inside info boxes */
.admonition table {
  margin: 1rem 0;
}
