/* Community Page Custom Styles */

/* Card hover animation */
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Thread titles */
.thread-title {
  font-weight: 600;
  color: #2563eb; /* Tailwind blue-600 */
  cursor: pointer;
}
.thread-title:hover {
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  background-color: #2563eb; /* blue-600 */
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-primary:hover {
  background-color: #1e40af; /* blue-800 */
}

/* Form spacing */
.form-input {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
