.orientation {
  font-size: small;
  position: relative;
  top: -10px;
  left: 2px;
  height: 20px;
  display: block;
}

.header_action {
  position: relative;
  top: -35px;
}

.upload_file {
  border: 3px var(--pico-primary) dashed;
  text-align: -webkit-center;
  padding: var(--pico-spacing);
  border-radius: 1.25rem;
}

[role=image_field] {
  border: 3px var(--pico-primary) dashed;
  text-align: -webkit-center;
  padding: var(--pico-spacing);
  border-radius: 1.25rem;
}

[role=header_action_screen] {
  text-align: right;
  align-content: center;
}

.pending {
  background-color: darkgoldenrod;
}
.active {
  background-color: darkgreen;
}
.inactive {
  background-color: darkred;
}
[role=seal] {
  border: 1px var(--pico-primary) solid;
  border-radius: var(--pico-border-radius);
  background-color: var(--pico-text-selection-color);
  padding: 0px 10px;
  margin-bottom: 10px;
  margin-right: 10px;
}

 section[role=field] {
    position: relative;
    margin-bottom: 0;
    margin-top: 15px;
  }

  section[role=field] > label {
    position: absolute;
    top: -15px;
    left: 10px;
    width: fit-content;
    padding-left: 5px;
    padding-right: 5px;
    background: transparent;
    background-image: linear-gradient(to bottom, var(--pico-background-color) 2px, transparent 2px);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: center 15px;
  }

  section[role=field]:has(> :focus) > label {
    color: var(--pico-primary);
    transition: .3s ease;
    background: transparent;
    background-image: linear-gradient(to bottom, var(--pico-background-color) 5px, transparent 5px);
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: center 13px;
  }

  /* section[role=field] > :not(label) {
      } */



