/* SPDX-License-Identifier: Apache-2.0 */
#content {
  background: var(--bkg-color);
  color: var(--text-color);
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.girafe-prototype {
  line-height: 40px;
  color: white;
  background: #ec5555;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.editing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#layer-selector {
  width: 100%;
}

.draw-btn {
  text-align: right;
}

.current-feature {
  border-top: var(--app-standard-border);
  margin-top: 2rem;
}
.current-feature-row {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.current-feature-row > button {
  margin-left: auto;
}

.current-feature-row > div:first-child {
  font-weight: bold;
}

.attribute-form-btns {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.btn-active {
  background-color: var(--bkg-color-grad2);
}
