
/* Location Info in Estimate Card */
.estimate-location-info {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.location-details {
  flex: 1;
  min-width: 200px;
  width:100%;
}

.location-address {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.location-coords {
  font-family: 'Inter', monospace;
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-left: 1.8rem; /* Align with text start after icon */
}

/* Action Buttons */
.location-actions {
  display: flex;
  gap: 0.75rem;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-to-search {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-sub);
}
.btn-to-search:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  background: #f0f9ff;
  transform: translateY(-1px);
}

.btn-to-map {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--secondary-color);
}
.btn-to-map:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.btn-icon-small {
  font-size: 1rem;
}

@media (max-width: 640px) {
  .estimate-location-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .location-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
