﻿.vjmap-location-selection-container {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
  width: min(20vw, 20rem);
  min-width: 18rem;
  max-height: 60vh;
  z-index: 1000;
  overflow: hidden;
}

.location-selection-instruction {
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  height:5vh;
}

.location-selection-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  max-height: 30vh;
  overflow-y: auto;
  display: block;
}

  .location-selection-table tbody {
    display: table;
    width: 100%;
  }

.location-selection-row {
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s;
}

  .location-selection-row:hover {
    background-color: #f5f5f5;
  }

  .location-selection-row td {
    padding: 0.6rem 0.5rem;
  }

.location-row-current {
  background-color: #e3f2fd !important;
  border-left: 0.25rem solid #2196F3;
}

  .location-row-current:hover {
    background-color: #e3f2fd !important;
  }

.location-name-cell {
  font-size: 0.9rem;
  width: 100%;
}

.location-status-cell {
  width: 2rem;
  text-align: center;
}

.location-tick {
  font-size: 1.2rem;
  color: #4CAF50;
  font-weight: 600;
}