.toura-smart-locations,
.toura-smart-locations * {
  box-sizing: border-box;
}

.toura-smart-locations {
  max-width: 900px;
  margin: 18px auto;
  padding: 18px;
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
  border: 2px solid #d4af37;
  border-radius: 14px;
}

.toura-smart-locations h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 27px;
}

.toura-smart-alert {
  padding: 12px;
  margin-bottom: 14px;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: #111;
  border: 2px solid #d4af37;
  border-radius: 10px;
}

.toura-smart-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.toura-smart-locations label {
  display: block;
  margin: 0 0 6px;
  font-weight: 700;
}

.toura-smart-locations select,
.toura-smart-locations input {
  width: 100%;
  padding: 12px 13px;
  color: #111;
  background: #fff;
  border: 2px solid #d4af37;
  border-radius: 9px;
  font-size: 16px;
}

.toura-smart-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.toura-smart-actions button,
.toura-smart-location-button {
  width: 100%;
  padding: 12px 14px;
  color: #fff;
  background: #111;
  border: 2px solid #d4af37;
  border-radius: 9px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.toura-smart-actions button:active,
.toura-smart-location-button:active {
  color: #111;
  background: #d4af37;
  border-color: #111;
}

.toura-smart-status {
  min-height: 22px;
  margin: 13px 0;
  text-align: center;
  font-weight: 700;
}

.toura-smart-city {
  margin: 12px 0;
  border: 2px solid #d4af37;
  border-radius: 11px;
  overflow: hidden;
}

.toura-smart-city h3 {
  margin: 0;
  padding: 11px 13px;
  color: #111;
  background: #f3e4a5;
  font-size: 20px;
}

.toura-smart-city-list {
  padding: 10px;
  background: #f8f8f8;
}

.toura-smart-location-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 7px 0;
  text-align: left;
}

.toura-smart-location-address {
  overflow-wrap: anywhere;
}

.toura-smart-location-count {
  flex: 0 0 auto;
  min-width: 42px;
  padding: 3px 7px;
  text-align: center;
  color: #111;
  background: #d4af37;
  border-radius: 999px;
  font-size: 13px;
}

.toura-smart-empty {
  padding: 15px;
  text-align: center;
  color: #555;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 10px;
}

@media (max-width: 700px) {
  .toura-smart-controls,
  .toura-smart-actions {
    grid-template-columns: 1fr;
  }

  .toura-smart-locations {
    padding: 14px;
  }
}
