html,
body,
#viewDiv {
  padding-bottom: 15px;
  margin: 0;
  height: 100%;
  width: 100%;
}

.dlg-gc::backdrop {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}

.dlg-gc {
  justify-content: center;
  box-shadow: 0 4px 5px rgb(0 0 0 / 30%);
  border-radius: 8px;
  border: 1px solid #000;
  background: #292a2d;
  color: white;
  max-width: 300px;
}

.dlg-gc-icon-error {
  font-size: 38px;
  font-weight: bold;
  color: red;
  text-shadow: 1px 1px 4px black;
}

.dlg-gc-icon-question {
  font-size: 32px;
  text-shadow: 1px 1px 3px black;
  color:#fff;
  background-color:#2196F3;
  width:38px;
  height:38px;
  border-radius:100%;
  text-align:center;
  text-decoration:none;
  box-shadow: inset -1px -1px 1px 0px rgba(0,0,0,0.25);
}

.dlg-gc header {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.dlg-gc header h2 {
  margin-block: 0px;
}

.dlg-gc footer menu {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0;
}

.dlg-gc button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.dlg-gc-btn-confirm {
  background: #85a9e6;
  color: white;
}

.dlg-gc-btn-cancel {
  background: #394e72;
  color: white;
}

#dialog-header--cancel-btn {
  font-size: 1em;
  height: 1.5em;
  width: 1.5em;
  color: rgb(134, 134, 134);
  border: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

#loadingIndicatorDiv {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background-color: #fff;
  z-index: 99;
}

#loadingIndicatorImg {
  z-index: 100;
}

.select-gc {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  outline: 0;
  font-size: 14px;
  min-width: 32px;
  width: 32px;
  text-align: left;
  background-image: url("data:image/svg+xml;base64,PHN2ZwogICBmaWxsPSIjNmU2ZTZlIgogICBoZWlnaHQ9IjI0IgogICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgIHdpZHRoPSIyNCIKICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aAogICAgIHN0eWxlPSJmaWxsOiM2ZTZlNmU7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlLXdpZHRoOjEuOTA3NyIKICAgICBkPSJtIDE1LjQ3NTIzMSw4LjUgLTMuNTE3MDUsMy44Mzg0MzEgLTMuNDY5ODY4NywtMy43ODg2OTMgLTEuNDg4MzEyMywxLjUwMDc3MiA0Ljk5NDYzOSw1LjQ0OTQ5IDUuMDA1MzYxLC01LjQ2MjQ2NSB6IiAvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-position: bottom 0px right -3px;
  background-origin: content-box;
  padding: 5px;
  padding-right: 0px;
}

/* Adding to overcome display issue with coordinate converter widget when
   placed in an expand widget: for some reason it doesn't align correctly. */
#cc-expand-gc_controls_content {
  display: flex;
}

/* Get rid of focus rectange that outlines the map every time you click on it */
.esri-view .esri-view-surface--touch-none:focus::after {
  outline: none !important;
}

.div-import-container-gc {
  display: flex;
  align-items: flex-end;
  justify-content: left;
  height: 240px;
  width: 100%;
  top: 17px;
  pointer-events: none !important;
}

.div-import-group-gc {
  background-color: white;
  width: calc(100% - 420px);
  max-width: 1000px;
  min-width: 100px;
  height: 100%;
  border: 1px solid #a7a7a7;
  padding: 0px;
  margin-left: 60px;
  user-select: none;
  pointer-events: auto;
}

.div-table-header-gc {
  width: 100%;
  height: 20%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.div-table-header-gc p  {
  margin-left: 20px;
}

.div-table-header-gc div
{
  margin-right: 10px;
  height: 16px;
}

.div-table-gc {
  width: 100%;
  height: 80%;
  overflow: auto;
}

.div-table-gc table {
  width: 100%;
  height: auto;
  border-collapse: collapse;
  text-align: center;
  white-space: pre;
}

/* Hide the first column in the table which contains source record id */
.div-table-gc table tr > *:nth-child(1) {
  display: none;
}

.div-table-gc table, .div-table-gc th, .div-table-gc td {
  border: 1px solid #e7e7e7;
  padding: 3px;
}

.div-table-gc th {
  top: -1px;
  position: sticky;
  background: #f5f5f5;
  color: black;
}

.div-table-gc table tr {
  line-height: 15px;
}

.selected-row {
  border: 2px solid blue;
  background-color: lightcyan;
}


