/* Container for each check-in card */
.tmp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Top section with name, description, and date */
.tmp-top {
  padding: 12px;
}

.tmp-top .tmp-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #111827;
}

.tmp-top .tmp-desc {
  font-size: 1rem;
  color: #374151;
  margin-top: 4px;
}

.tmp-top .tmp-date {
  color: #6b7280;
  font-size: 1.1rem;  /* increased from 0.9rem */
  font-weight: 500;
  margin-top: 4px;
}

/* Bottom section with map and image */
.tmp-bottom {
  display: flex;
  flex-wrap: wrap;
}

.tmp-map, .tmp-image {
  flex: 1 1 50%;
  min-height: 250px;
  max-height: 250px;
}

.tmp-map iframe, .tmp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Load More button styling */
#tmp-load-more {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#tmp-load-more:hover {
  background: #1e40af;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .tmp-map, .tmp-image {
   
