.config-cols {
  border-left: 1px solid rgba(0, 0, 0, 0.1215686275);
}
.bb-1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
  padding-bottom: 8px;
}
.mw-90 {
  max-width: 90%;
}
.state-map-color-chip {
  width: 60px;
  height: 26px;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.state-map-color-chip:hover:not(.disabled) {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.state-map-color-chip.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.preset-colors-card {
  overflow: visible;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.preset-colors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: 260px;
}
.preset-color-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  min-width: 0;
}
.preset-color-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.preset-color-item.selected {
  border: 2px solid rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}
.state-map-remove-btn {
  cursor: pointer;
}
.state-map-remove-btn:hover:not(:disabled) {
  cursor: pointer;
}
.state-map-remove-btn:disabled {
  cursor: not-allowed;
}
.state-map-modified-row {
  background-color: rgba(33, 150, 243, 0.1) !important;
}
.state-map-modified-row:hover {
  background-color: rgba(33, 150, 243, 0.15) !important;
}
.state-map-hidden-row {
  opacity: 0.5;
  background-color: rgba(158, 158, 158, 0.1) !important;
}
.state-map-hidden-row:hover {
  opacity: 0.7;
  background-color: rgba(158, 158, 158, 0.15) !important;
}
