/* style.css for Broward Pre-Foreclosure Tracker */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f6fa;
}

h1 {
  text-align: center;
  color: #222;
  margin-top: 30px;
  font-size: 28px;
}

.search-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

#searchInput {
  width: 60%;
  max-width: 600px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.properties-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
}

.property-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 10px;
  padding: 20px;
  width: 300px;
  transition: transform 0.2s ease;
}

.property-card:hover {
  transform: translateY(-5px);
}

.property-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.property-card p {
  margin: 6px 0;
  color: #555;
  font-size: 14px;
}

.property-card a {
  display: inline-block;
  margin-top: 10px;
  color: #0077cc;
  text-decoration: none;
}

.property-card button {
  margin-top: 10px;
  background-color: #008c6f;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.property-card button:hover {
  background-color: #006c56;
}
