@charset "UTF-8";
/* Grid */
.app-grid {
  padding: 20px;
}
.app-grid thead {
  background-color: #E3E3E3;
  border-color: #CFCFCF;
}
.app-grid thead th {
  color: #6B6B6A;
  padding: 10px 25px !important;
  background-color: #E3E3E3;
}
.app-grid thead th .col-title {
  padding: 0 !important;
}
.app-grid thead th .col-title:hover {
  background-color: #E3E3E3 !important;
}
.app-grid thead th .col-title-text {
  color: #6B6B6A;
  font-weight: 500;
  font-size: 14px;
}
.app-grid td {
  font-weight: 500;
  font-size: 14px;
  color: #6B6B6A;
  padding: 10px 25px !important;
}
.app-grid td .rounded-pill {
  padding: 3px 10px;
  font-size: 12px;
}
.app-grid .ra-pill {
  padding: 3px 10px;
  line-height: 21px;
}
.app-grid .app-grid__btneditar {
  color: #4F6E00 !important;
}
.app-grid .app-grid__btneliminar {
  color: #D32F2F !important;
}
.app-grid .app-grid__toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}
.app-grid .app-grid__search {
  max-width: 360px;
  border-radius: 999px;
}
.app-grid .app-grid__select {
  max-width: 280px;
  border-radius: 999px;
}
.app-grid .app-grid__municipio {
  max-width: 280px;
  width: 100%;
}
.app-grid .app-grid__municipio .sscb__label:empty {
  display: none;
}
.app-grid .app-grid__table {
  border-radius: 12px;
  overflow: hidden;
}
.app-grid {
  /* Block interactions while loading */
}
.app-grid .app-grid__table.is-loading {
  pointer-events: none;
}
.app-grid {
  /* Row actions: hidden until hover (desktop), always visible on mobile */
}
.app-grid .row-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease;
}
.app-grid tr:hover .row-actions {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .app-grid .row-actions {
    opacity: 1;
    pointer-events: auto;
  }
  .app-grid .app-grid__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .app-grid .app-grid__search,
  .app-grid .app-grid__select {
    max-width: none;
  }
}
.app-grid .app-grid__pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 18px;
}
.app-grid .app-grid__pager-nav {
  border: 0;
  background: transparent;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin-right: 14px;
  margin-left: 14px;
}
.app-grid .app-grid__pager-nav:disabled {
  color: #b7b7b7;
  cursor: not-allowed;
}
.app-grid .app-grid__page {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #6B6B6A;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
}
.app-grid .app-grid__page:hover,
.app-grid .app-grid__page:focus,
.app-grid .app-grid__page:focus-visible {
  background: transparent;
  color: #6B6B6A;
  outline: none;
}
.app-grid .app-grid__page.is-active {
  background: #84BD00;
  color: #fff;
}
.app-grid .app-grid__page:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.app-grid .app-grid__ellipsis {
  color: #666;
  font-size: 30px;
  line-height: 1;
}
.app-grid {
  /* Loader overlay */
}
.app-grid .grid-loader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  /* start at top, not center */
  justify-content: center;
  padding-top: 10px;
  z-index: 5;
}
.app-grid .grid-loader img {
  width: 48px;
  height: 48px;
  margin-top: 40px;
}
.app-grid {
  /* Skeleton */
}
.app-grid .grid-skeleton {
  width: calc(100% - 24px);
  margin: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-grid {
  /* Approx table header height spacer so skeleton reads like rows */
}
.app-grid .grid-skeleton__header-spacer {
  height: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 6px;
}
.app-grid .sk-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 0.7fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.app-grid .sk {
  height: 14px;
  border-radius: 999px;
  background: #e9ecef;
  position: relative;
  overflow: hidden;
}
.app-grid .sk::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: sk 1.1s infinite;
}
@keyframes sk {
  100% {
    transform: translateX(100%);
  }
}
.app-grid .sk-w-30 {
  height: 16px;
}
.app-grid .sk-w-18 {
  height: 14px;
}
.app-grid .sk-w-16 {
  height: 14px;
}
.app-grid .sk-w-14 {
  height: 14px;
}
.app-grid .sk-w-10 {
  height: 14px;
}
.app-grid {
  /* Empty state */
}
.app-grid .grid-empty {
  padding: 28px 18px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}
.app-grid .grid-empty__title {
  font-weight: 700;
  margin-bottom: 6px;
}
.app-grid .grid-empty__subtitle {
  opacity: 0.75;
  font-size: 13px;
}
.app-grid {
  /* Sort indicator color tweak (QuickGrid uses aria-sort on th) */
}
.app-grid .app-grid__quickgrid thead th[aria-sort=ascending],
.app-grid .app-grid__quickgrid thead th[aria-sort=descending] {
  font-weight: 700;
}
.app-grid .title-with-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.app-grid .row-actions-below {
  display: flex;
  gap: 14px;
}
.app-grid .actions-desktop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease;
  display: none;
}
.app-grid tr:hover .actions-desktop {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.app-grid .actions-mobile {
  display: none;
}
@media (max-width: 992px) {
  .app-grid .actions-desktop {
    display: none;
  }
  .app-grid .actions-mobile {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
  }
  .app-grid tr:hover .actions-desktop {
    opacity: 0;
    pointer-events: none;
  }
}
.app-grid .ellipsis-btn {
  text-decoration: none;
  font-size: 20px;
  line-height: 1;
  color: #6c757d;
}
.app-grid .ellipsis-btn:hover {
  color: #343a40;
}
.app-grid .floating-menu {
  position: absolute;
  right: 0;
  top: 26px;
  min-width: 140px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 50;
}
.app-grid .menu-item {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  font-size: 14px;
}
.app-grid .menu-item:hover {
  background: #f6f6f6;
}
.app-grid .menu-item.danger {
  color: #dc3545;
}
.app-grid .menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: transparent;
}
.app-grid {
  /* --- QuickGrid sort indicator: always show 2 arrows, highlight active direction --- */
  /* 1) Hide QuickGrid's default sort icon if it exists */
}
.app-grid .app-grid__quickgrid thead th .col-sort-indicator,
.app-grid .app-grid__quickgrid thead th .sort-indicator,
.app-grid .app-grid__quickgrid thead th .col-sort-indicator-container {
  display: none !important;
}
.app-grid {
  /* 2) Make the header content layout predictable */
}
.app-grid .app-grid__quickgrid thead th[aria-sort] button,
.app-grid .app-grid__quickgrid thead th[aria-sort] .col-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.app-grid {
  /* 3) Default: show BOTH arrows in light gray */
}
.app-grid .app-grid__quickgrid thead th[aria-sort] button::after,
.app-grid .app-grid__quickgrid thead th[aria-sort] .col-title::after {
  content: "";
  width: 12px;
  height: 16px;
  flex: 0 0 12px;
  /* two stacked arrows (light) */
  background-repeat: no-repeat, no-repeat;
  background-position: center 2px, center 10px;
  background-size: 10px 6px, 10px 6px;
  /* up (light), down (light) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23B5B5B5' d='M5 0L10 6H0z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23B5B5B5' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  opacity: 1;
}
.app-grid {
  /* 4) Ascending: UP arrow darker, DOWN stays light */
}
.app-grid .app-grid__quickgrid thead th[aria-sort=ascending] button::after,
.app-grid .app-grid__quickgrid thead th[aria-sort=ascending] .col-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236B6B6A' d='M5 0L10 6H0z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23B5B5B5' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
}
.app-grid {
  /* 5) Descending: DOWN arrow darker, UP stays light */
}
.app-grid .app-grid__quickgrid thead th[aria-sort=descending] button::after,
.app-grid .app-grid__quickgrid thead th[aria-sort=descending] .col-title::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23B5B5B5' d='M5 0L10 6H0z'/%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236B6B6A' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
}

/* MultiSelectCombo */
.mscb {
  width: 100%;
}
.mscb .mscb__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #3D3C3B;
}
.mscb {
  /* Outer shell: single border always */
}
.mscb .mscb__shell {
  --radius: 18px;
  --chip: #dff2a9;
  --chip-text: #2b2b2b;
  --row-sel: #dff2a9;
  --divider: rgba(0, 0, 0, .06);
  background: #F9F9F9;
  border: 1px solid #6B6B6A;
  border-radius: var(--radius);
  overflow: hidden;
  /* key: only outside border */
  cursor: pointer;
  outline: none;
}
.mscb .mscb__shell.is-open {
  border-color: #84BD00;
}
.mscb {
  /* Field (chips + caret) */
}
.mscb .mscb__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}
.mscb .mscb__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-height: 30px;
  align-items: center;
}
.mscb .mscb__placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  line-height: 1;
  padding: 2px 0;
}
.mscb {
  /* Chips */
}
.mscb .mscb__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #DFF2B8;
  font-size: 15px;
  line-height: 1;
  border: 1px solid #A6D93F;
}
.mscb .mscb__chip-text {
  color: #4F6E00;
  font-weight: 500;
  font-size: 12px;
}
.mscb .mscb__chip-x {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #4F6E00;
  color: #F9F9F9;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.mscb .mscb__chip-x:hover {
  background: rgba(0, 0, 0, 0.28);
}
.mscb {
  /* Caret (right) */
}
.mscb .mscb__caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 0, 0, 0.45);
  border-bottom: 2px solid rgba(0, 0, 0, 0.45);
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform 0.15s ease;
}
.mscb {
  /* Divider only visible when open */
}
.mscb .mscb__divider {
  height: 1px;
  background: var(--divider);
  display: none;
}
.mscb {
  /* Dropdown */
}
.mscb .mscb__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.18s ease;
}
.mscb {
  /* rows */
}
.mscb .mscb__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.mscb .mscb__row:hover {
  background: rgba(0, 0, 0, 0.03);
}
.mscb .mscb__row.is-selected {
  background: var(--row-sel);
}
.mscb {
  /* Checkbox look: use accent-color to match your green */
}
.mscb .mscb__check {
  width: 14px;
  height: 14px;
  accent-color: #84BD00;
  cursor: pointer;
}
.mscb .mscb__text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.78);
}
.mscb .mscb__textwrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  /* separación como en tu screenshot */
  min-width: 0;
}
.mscb .mscb__subtext {
  font-size: 14px;
  /* más pequeño */
  color: rgba(0, 0, 0, 0.45);
  /* más claro */
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .mscb .mscb__subtext {
    display: none;
  }
}
.mscb {
  /* OPEN STATE: grows with one outer border, no inner borders */
}
.mscb .mscb__shell.is-open .mscb__divider {
  display: block;
}
.mscb .mscb__shell.is-open .mscb__dropdown {
  max-height: var(--mscb-max, 280px);
  overflow: auto;
}
.mscb .mscb__shell.is-open .mscb__caret {
  transform: rotate(-135deg);
}
.mscb {
  /* Disabled state */
}
.mscb.is-disabled {
  opacity: 0.65;
}
.mscb.is-disabled .mscb__shell {
  cursor: not-allowed;
  border-color: rgba(139, 195, 74, 0.45) !important;
  background: rgba(0, 0, 0, 0.02) !important;
}
.mscb.is-disabled .mscb__chip-x {
  cursor: not-allowed;
}
.mscb.is-disabled .mscb__search-clear {
  cursor: not-allowed;
}
.mscb .mscb__row.is-row-disabled {
  pointer-events: none;
}
.mscb {
  /* Search header */
}
.mscb .mscb__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}
.mscb .mscb__search-input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 16px;
  background: transparent;
}
.mscb .mscb__search-clear {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mscb .mscb__search-clear:hover {
  background: rgba(0, 0, 0, 0.25);
}
.mscb {
  /* Optional: make dropdown scroll feel nice */
}
.mscb .mscb__shell.is-open .mscb__dropdown {
  overscroll-behavior: contain;
}

/* SingleSelectCombo */
.sscb {
  width: 100%;
}
.sscb .sscb__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #3D3C3B;
}
.sscb .sscb__shell {
  --radius: 18px;
  --bg: $bg1;
  --chip: #dff2a9;
  --divider: rgba(0, 0, 0, .06);
  background: var(--bg);
  border: 1px solid #6B6B6A;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
.sscb .sscb__shell.is-open {
  border-color: #84BD00;
}
.sscb .sscb__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  padding-right: 14px;
  min-height: 38px;
  background-color: #F9F9F9;
}
.sscb .sscb__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  align-items: center;
  min-width: 0;
}
.sscb .sscb__placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
}
.sscb .sscb__value {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sscb .sscb__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--chip);
  font-size: 15px;
  line-height: 1;
}
.sscb .sscb__chip-x {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.sscb .sscb__chip-x:hover {
  background: rgba(0, 0, 0, 0.28);
}
.sscb .sscb__caret {
  color: rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease;
  /*width: 6px;
  height: 6px;
  border-right: 2px solid rgba(0,0,0,.45);
  border-bottom: 2px solid rgba(0,0,0,.45);
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform .15s ease;*/
}
.sscb .sscb__divider {
  height: 1px;
  background: var(--divider);
  display: none;
}
.sscb .sscb__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.18s ease;
  background-color: #F9F9F9;
}
.sscb .sscb__shell.is-open .sscb__dropdown {
  max-height: var(--mscb-max, 280px);
  overflow: auto;
  overscroll-behavior: contain;
}
.sscb .sscb__shell.is-open .sscb__caret {
  transform: rotate(-180deg);
}
.sscb {
  /* Rows */
}
.sscb .sscb__row {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sscb .sscb__row:hover {
  background: rgba(0, 0, 0, 0.03);
}
.sscb .sscb__row.is-selected {
  background: #dff2a9;
}
.sscb {
  /* Text + subtitle */
}
.sscb .sscb__textwrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}
.sscb .sscb__text {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.78);
}
.sscb .sscb__subtext {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
.sscb {
  /* Search */
}
.sscb .sscb__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}
.sscb .sscb__search-input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 16px;
  background: transparent;
}
.sscb .sscb__search-clear {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.sscb .sscb__search-clear:hover {
  background: rgba(0, 0, 0, 0.25);
}
.sscb {
  /* Disabled */
}
.sscb .sscb.is-disabled .sscb__shell {
  border-color: rgba(139, 195, 74, 0.45) !important;
  background: rgba(0, 0, 0, 0.02) !important;
  cursor: not-allowed !important;
}
.sscb .sscb.is-disabled .sscb__placeholder,
.sscb .sscb.is-disabled .sscb__text,
.sscb .sscb.is-disabled .sscb__chip-text {
  color: rgba(0, 0, 0, 0.4) !important;
}
.sscb .sscb.is-disabled .sscb__caret {
  color: rgba(0, 0, 0, 0.25) !important;
  /*border-right-color: rgba(0,0,0,.25) !important;
  border-bottom-color: rgba(0,0,0,.25) !important;*/
}
.sscb .sscb__row.is-row-disabled {
  pointer-events: none;
}

/* Selector de Imagenes */
.thumb-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.thumb-picker {
  width: 100%;
  min-height: 150px;
  border: 1px dashed #999999;
  border-radius: 12px;
  background: #F9F9F9;
  display: grid;
  place-items: center;
  padding: 18px;
  cursor: pointer;
}
.thumb-picker .thumb-picker:hover {
  border-color: #b7b7b7;
}
.thumb-picker .thumb-picker__icon {
  font-size: 34px;
  color: #9a9a9a;
  line-height: 1;
  margin-bottom: 6px;
}
.thumb-picker .thumb-picker__text {
  color: #6f6f6f;
  font-weight: 600;
  text-decoration: underline;
}

/* Selected state container */
.thumb-preview {
  width: 100%;
  min-height: 150px;
  border: 1px solid #6B6B6A;
  border-radius: 12px;
  background: #F9F9F9;
  padding: 12px;
}

/* Wrap so the X is pinned to the image corner */
.thumb-preview__imgwrap {
  position: relative;
  display: inline-block;
  width: min(220px, 70%);
  height: 110px;
}

/* The preview image */
.thumb-preview__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* X always on top-right of the image */
.thumb-preview__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.thumb-preview__remove .material-symbols-rounded {
  font-size: 18px;
  line-height: 1;
}

.thumb-preview__remove:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Polygon Picker */
.poly-picker {
  display: grid;
  grid-template-columns: 1fr 180px;
  border: 2px solid #8e8e8e;
  border-radius: 22px;
  overflow: hidden;
  background: #f2f2f2;
  min-height: 520px;
}
.poly-picker .poly-picker__searchHost {
  flex: 1;
  height: 52px;
  border-radius: 999px;
  border: 2px solid #9a9a9a;
  background: rgba(255, 255, 255, 0.75);
  overflow: visible;
  /* <-- CAMBIO CLAVE */
  position: relative;
  /* ayuda al overlay */
  z-index: 9999;
  /* encima del mapa */
}
.poly-picker {
  /* El web component (new) */
}
.poly-picker .poly-picker__searchHost gmp-place-autocomplete {
  width: 100%;
  height: 100%;
  display: block;
}
.poly-picker {
  /* Fallback input (si no existe PlaceAutocompleteElement) */
}
.poly-picker .poly-picker__searchHost input.poly-picker__searchFallback {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0 18px;
  font-size: 22px;
  background: transparent;
}
.poly-picker {
  /* Hide InfoWindow X only inside our polygon picker map */
}
.poly-picker .poly-picker__map--zones .gm-ui-hover-effect {
  display: none !important;
}
.poly-picker .poly-picker__left {
  position: relative;
  border-right: 2px solid #8e8e8e;
  background: #e9e9e9;
  height: 100%;
  min-height: 0;
}
.poly-picker .poly-picker__topbar {
  margin-top: 16px;
  margin-left: 16px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}
.poly-picker .poly-picker__search {
  flex: 1;
  height: 52px;
  border-radius: 999px;
  border: 2px solid #9a9a9a;
  padding: 0 18px;
  font-size: 22px;
  outline: none;
  background: #ffffff;
}
.poly-picker .poly-picker__btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid #9a9a9a;
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 9999;
}
.poly-picker .poly-picker__map {
  position: absolute;
  inset: 0;
}
.poly-picker .poly-picker__right {
  background: #ffffff;
  padding: 18px;
}
.poly-picker .poly-picker__empty {
  color: #6B6B6A;
  font-size: 14px;
  font-weight: 500;
}
.poly-picker .poly-picker__chips {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.poly-picker .chip {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid #7ed321;
  background: #eaf7d8;
  color: #466a15;
  font-size: 26px;
}
.poly-picker .chip__x {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: #466a15;
  color: white;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  display: flex;
  justify-content: center;
}
.poly-picker .chip__text {
  font-size: 14px;
  color: #4F6E00;
  font-weight: 500;
}

@media (max-width: 768px) {
  .poly-picker {
    display: block;
  }
  .poly-picker .poly-picker__left {
    height: 520px;
  }
}
/* Boton para publicar cambios en pantallas */
.btn-publish-pill {
  height: 36px;
  border-radius: 999px;
  border: 1px solid #6B6B6A;
  background: #F0F0F0;
  color: #6B6B6A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 20px;
  transition: filter 0.15s ease;
}
.btn-publish-pill:hover:not(:disabled) {
  background: #CFCFCF;
}
.btn-publish-pill .btn-publish-pill__text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}
.btn-publish-pill .btn-publish-pill__icon {
  font-size: 20px;
  line-height: 1;
}
.btn-publish-pill .btn-publish-pill__spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6B6B6A;
  border-top-color: transparent;
  animation: pf-publish-spin 0.9s linear infinite;
}
.btn-publish-pill:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@keyframes pf-publish-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .btn-publish-pill__text {
    display: none;
  }
  .btn-cancel-link {
    display: none;
  }
}
@media (max-width: 992px) {
  .pf-actions {
    gap: 12px;
  }
  .btn-cancel-link {
    font-size: 20px;
  }
  .btn-publish-pill {
    height: 36px;
    padding: 0 20px;
  }
  .btn-publish-pill__text {
    font-size: 34px;
  }
  .btn-publish-pill__icon {
    font-size: 36px;
  }
  .btn-publish-pill__spinner {
    width: 34px;
    height: 34px;
    border-width: 4px;
  }
}
/* Toast en línea (no flotante) */
.pf-inline-toast-host {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 6px 26px 0;
  position: relative;
  z-index: 10;
}
.pf-inline-toast-host .pf-inline-toast {
  width: min(494px, 100%);
  min-height: 64px;
  border-radius: 20px;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}
.pf-inline-toast-host .pf-inline-toast.is-success {
  background: #E6F7EC;
  border-color: #1A7A4A;
  color: #2f2f2f;
}
.pf-inline-toast-host .pf-inline-toast.is-error {
  background: #f6e7e7;
  border-color: #c82727;
  color: #2f2f2f;
}
.pf-inline-toast-host .pf-inline-toast__icon .material-symbols-rounded {
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.pf-inline-toast-host .pf-inline-toast.is-success .pf-inline-toast__icon .material-symbols-rounded {
  color: #1d8d52;
}
.pf-inline-toast-host .pf-inline-toast.is-error .pf-inline-toast__icon .material-symbols-rounded {
  color: #c82727;
}
.pf-inline-toast-host .pf-inline-toast__text {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.pf-inline-toast-host .pf-inline-toast__close {
  border: 0;
  background: transparent;
  color: #6f6f6f;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.pf-inline-toast-host .pf-inline-toast__close .material-symbols-rounded {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 992px) {
  .pf-inline-toast-host .pf-inline-toast-host {
    justify-content: center;
    padding: 6px 14px 0;
  }
  .pf-inline-toast-host .pf-inline-toast {
    min-height: 78px;
    border-radius: 16px;
    padding: 14px 16px;
    gap: 12px;
  }
  .pf-inline-toast-host .pf-inline-toast__icon .material-symbols-rounded {
    font-size: 24px;
  }
  .pf-inline-toast-host .pf-inline-toast__text {
    font-size: 14px;
  }
  .pf-inline-toast-host .pf-inline-toast__close .material-symbols-rounded {
    font-size: 20x;
  }
}/*# sourceMappingURL=controls.css.map */