.property-page {
  padding: 0;
  background-color: white;
}

.property-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
}

.property-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.property-back-button {
  display: flex;
  align-items: center;
  padding: 8px;
  border: none;
  background: none;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}

.property-back-button i {
  margin-right: 5px;
}

.property-title {
  margin: 0 0 0 10px;
  font-size: 16px;
  font-weight: 500;
}

.property-search-bar {
  padding: 15px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  width: 260px;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #007aff;
}

.search-button {
  padding: 12px 24px;
  background-color: #007aff;
  color: white;
  border: none;
  margin-left: 12px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.3);
}

.search-button:hover {
  background-color: #0066d6;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 122, 255, 0.4);
}

.search-button:active {
  background-color: #0056b3;
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 122, 255, 0.3);
}

.property-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.property-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.property-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.property-address {
  font-size: 17px;
  color: #333;
  font-weight: 500;
}

.property-item::after {
  content: ">";
  font-size: 18px;
  color: #999;
  margin-left: 8px;
}

.property-edit-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.property-edit-header {
  display: flex;
  align-items: center;
  padding: 24px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.property-edit-header .back-button {
  border: none;
  background: none;
  font-size: 16px;
  color: #007aff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 16px;
}

.property-edit-header .save-button {
  padding: 8px 16px;
  background-color: #007aff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  right: 16px;
}

.property-edit-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0;
  white-space: pre-line;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-edit-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.property-info-section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-map-section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-height: 300px;
}
.add-property-button {
  padding: 8px 16px;
  background-color: #007aff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 122, 255, 0.3);
}

.add-property-button:hover {
  background-color: #0066d6;
  box-shadow: 0 4px 8px rgba(0, 122, 255, 0.4);
}

.add-property-button:active {
  background-color: #0056b3;
  box-shadow: 0 2px 4px rgba(0, 122, 255, 0.3);
}
