#layers-panel,
#properties {
  font-size: 13px;
}

.layer-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  margin-bottom: 4px;
  border-radius: 6px;
  cursor: pointer;
  color: #e5e7eb;
  background: transparent;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.layer-item:hover {
  background: #020617;
}

.layer-item.selected {
  background: #0ea5e9;
  color: white;
}

.properties-group {
  margin-bottom: 16px;
}

.properties-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.properties-group input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #1f2937;
  background: #020617;
  color: #e5e7eb;
  font-size: 13px;
}

.properties-group input:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.4);
}

.properties-panel button {
  width: 100%;
  padding: 8px 10px;
  margin-top: 4px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: white;
  background: #dc2626;
  transition: background 0.15s ease;
}

.properties-panel button:hover {
  filter: brightness(1.1);
}
