.crf-locator {
  max-width: 100%;
}

.crf-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.crf-map {
  height: 500px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .crf-container {
    grid-template-columns: 1fr;
  }

  .crf-map {
    height: 400px;
  }
}

.crf-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.crf-input {
  flex: 1 1 260px;
  padding: 10px 12px;
  border: none;
  outline: none;
  height: 1.5rem;
  font-size: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.crf-input:focus {
  outline: 1px solid #1C4221;
}

.crf-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.12);
  border-top: none;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}

.crf-suggestion-item {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.crf-suggestion-item:hover {
  background-color: rgba(0,0,0,0.04);
}

.crf-suggestion-main {
  font-weight: 500;
  font-size: 14px;
}

.crf-suggestion-sub {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

.crf-select {
  flex: 0 0 120px;
  padding: 10px 12px;
  border: none;
  font-size: 1rem;
  height: 2.6rem;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.crf-select:focus {
  outline: 1px solid #1C4221;
}

.crf-locator-header .crf-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.crf-button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: #1C4221;
  color: #fff;
  border: none;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  height: 2.5rem;
  transition: 0.25s ease all;
}

.crf-button:hover {
  background-color: #ffcd00;
  color: #1C4221;
}

.crf-meta {
  margin-top: 12px;
  margin-bottom: 12px;
}

.crf-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  height: fit-content;
}

.crf-skeleton {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 12px;
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: rgba(0,0,0,0.05);
  }
  100% {
    background-color: rgba(0,0,0,0.1);
  }
}

.crf-skeleton-line {
  height: 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  background-color: rgba(0,0,0,0.08);
}

.crf-skeleton-line:last-child {
  margin-bottom: 0;
}

.crf-skeleton-line.crf-skeleton-title {
  height: 18px;
  margin-bottom: 12px;
  width: 70%;
}

.crf-skeleton-line.crf-skeleton-text {
  width: 100%;
}

.crf-skeleton-line.crf-skeleton-short {
  width: 40%;
}

.crf-card {
  border: 1px solid rgba(0,0,0,0.12);
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 12px;
  background-color: #1C4221;
  color: #fff;
  height: fit-content;
}

.crf-title {
  font-weight: 700;
  font-size: 16px;
}

.crf-sub {
  opacity: 0.75;
  margin-top: 4px;
}

.crf-body {
  margin-top: 10px;
  line-height: 1.35;
}

.crf-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.crf-link {
  text-decoration: underline;
}