* {
  overflow: hidden;
  font-family: monospace;
}

body {
  background-color: #f0f0f0;
}

h1 {
  color: #333;
  text-align: center;
}

.selected {
  fill: blue !important;
}

#attribute-updation-buttons-container {
  button {
    margin-bottom: 10px;
  }
}

#svg-upload-label,
#reset-selection,
button {
  background-color: #f0f0f0;
  cursor: pointer;
  border: 1px black solid;
  border-radius: 5px;
  width: fit-content;
  &:hover {
    opacity: 0.6;
  }
  font-weight: 500;
  font-size: 14px;
  width: 200px;
  height: 30px;
  padding: 0 !important;
  @media screen and (max-width: 1400px) {
    font-size: 10px;
  }
}

#svg-upload-label,
#reset-selection {
  margin-top: 5%;
}

#svg-container {
  position: relative;
  background-color: transparent;
}

.checkbox-container {
  position: relative;
  height: 15%;
  display: flex;
  column-gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 10px;
  outline: 1px solid #000000;
  outline-offset: -8px;
  padding-top: 10px;
  padding-bottom: 10px;
  &::after {
    content: "Atributos a mostrar";
    font-size: 20px;
    position: absolute;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #f0f0f0;
    width: fit-content;
    left: 20px;
    top: -5px;
  }
  @media screen and (max-width: 1400px) {
    &::after {
      font-size: 16px;
    }
  }
}

.checkbox-container div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.checkbox-container div label {
  font-size: 16px;
  margin-right: 10px;
  @media screen and (max-width: 1400px) {
    font-size: 12px;
  }
}

#attribute-main-container {
  position: relative;
  height: 40%;
  width: 100%;
  border-radius: 10px;
  outline: 1px solid #000000;
  outline-offset: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  &::after {
    content: "Atributos de los asientos seleccionados";
    font-size: 20px;
    position: absolute;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #f0f0f0;
    width: fit-content;
    left: 20px;
    top: -5px;
  }
  @media screen and (max-width: 1400px) {
    &::after {
      font-size: 16px;
    }
  }
}

#attribute-container {
  height: 80%;
  width: 95%;
  gap: 10px;
  position: relative;
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
}

.seat-container {
  min-height: 25%;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px;
  flex-wrap: wrap;
  column-gap: 20px;
  border: 1px solid #000000;
  border-radius: 5px;
}
