<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos para o componente de busca de cidades */
.cidade-search-container {
  margin: 20px 0;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cidade-search-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.cidade-search-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

.cidade-search-input-group {
  position: relative;
  margin-bottom: 15px;
}

.cidade-search-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.cidade-search-input:focus {
  border-color: #FF5100;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 81, 0, 0.2);
}

.cidade-search-button {
  background-color: #FF5100;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
}

.cidade-search-button:hover {
  background-color: #e64a00;
}

.cidade-search-results {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
  display: none;
}

.cidade-search-results.found {
  display: block;
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
}

.cidade-search-results.not-found {
  display: block;
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
}

.cidade-search-result-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cidade-search-result-content {
  margin-bottom: 10px;
}

.cidade-search-vendor {
  margin-top: 15px;
  padding: 10px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cidade-search-vendor-name {
  font-weight: bold;
  color: #333;
}

.cidade-search-vendor-phone {
  color: #FF5100;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
  font-weight: bold;
}

.cidade-search-vendor-phone:hover {
  text-decoration: underline;
}

/* Estilos para o autocomplete */
.autocomplete-items {
  position: absolute;
  border: 1px solid #ddd;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background-color: white;
  border-radius: 0 0 4px 4px;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
}

.autocomplete-items div:hover {
  background-color: #f1f1f1;
}

.autocomplete-active {
  background-color: #FF5100 !important;
  color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .cidade-search-container {
    padding: 15px;
  }
  
  .cidade-search-title {
    font-size: 1.3rem;
  }
  
  .cidade-search-input, 
  .cidade-search-button {
    padding: 10px 15px;
    font-size: 14px;
  }
}
</pre></body></html>