   .hidden-text {
      display: none;
      margin-top: 10px;
    }

    .dropdown-btn {
      padding: 10px 20px;
      background-color: #3498db;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }

    .dropdown-btn:hover {
      background-color: #2980b9;
    }

.property-links .button {
  display: inline-block;
  background: #ffffff; /* Weißer Hintergrund */
  color: #000000; /* Schwarzer Text */
  font-size: 13px;
  font-weight: 300;
  padding: 7px 12px;
  border: 1px solid #000000; /* Schwarzer Rahmen */
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.property-links .button:hover {
  background: #000000; /* Schwarzer Hintergrund beim Hover */
  color: #ffffff; /* Weißer Text beim Hover */
  transform: translateY(-2px); /* Leichte Bewegung nach oben */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* optionaler Schatten */
}

.property-links .button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
