.mls-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fefefe;
}
.mls-form input[type=url],
.mls-form select,
.mls-form input[type=submit] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.mls-success { color: green; text-align: center; font-weight: bold; }
.mls-error { color: red; text-align: center; font-weight: bold; }
.mls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}
.mls-card {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.mls-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}
.mls-meta {
  font-size: 13px;
  margin-top: 10px;
  color: #555;
}
.mls-highlight {
  background-color: #e1f7d5;
  border-left: 4px solid #4CAF50;
}
