/* Contratos Module Styles */
.contratos-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.contratos-form-wrapper {
  position: relative;
  z-index: 100;
}

/* General searchable select in contratos module - MAX Z-INDEX */
#contratos-content .searchable-select,
#contratos-detail-content .searchable-select {
  position: relative;
  width: 100%;
  z-index: 99999;
}

#contratos-content .searchable-select:focus-within,
#contratos-detail-content .searchable-select:focus-within {
  z-index: 999999 !important;
}

#contratos-content .searchable-select-dropdown,
#contratos-detail-content .searchable-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
  z-index: 9999999 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#contratos-content .searchable-select-dropdown.show,
#contratos-detail-content .searchable-select-dropdown.show {
  display: block;
}

/* Table header z-index - LOWER than dropdown */
.pdv-table thead {
  z-index: 100 !important;
  position: sticky;
  top: 0;
  background: #f8f9fa;
}

.contratos-form-group {
  position: relative;
  z-index: 1;
}
.contratos-form-group:focus-within,
.contratos-form-group:has(.searchable-select:focus-within) {
  z-index: 999999 !important;
}
