.yls-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}
.yls-title {
  color: #1e90ff;
  font-size: 28px;
  text-align: left;
  margin-bottom: 10px;
}
.yls-subtitle {
  text-align: left;
  color: #666;
  margin-bottom: 20px;
}
.yls-columns {
  display: flex;
  gap: 20px;
}
.yls-left-column,
.yls-right-column {
  flex: 1;
}
.yls-filters {
  margin-bottom: 20px;
}
.yls-filter-group {
  margin-bottom: 15px;
}
.yls-filter-group label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}
.yls-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
}
.select2-container .select2-selection--single {
  height: 40px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 40px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 40px;
}
.yls-results h3 {
  color: #1e90ff;
  margin-bottom: 10px;
}
.yls-result-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.yls-result-item {
  background-color: #1e90ff;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.yls-result-item p {
  margin: 5px 0;
}
.yls-loading {
  text-align: center;
  color: #666;
}
@media (max-width: 768px) {
  .yls-columns {
    flex-direction: column;
  }
  .yls-right-column {
    order: 2;
  }
  #yls-map {
    height: 400px;
  }
}
