/* General page styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

.logo img {
  width: 150px; /* Adjust width to match Yelp's logo dimensions */
}

.welcome-message {
  margin: 0 10px; /* Space around the welcome message */
  font-weight: bold; /* Make welcome text bold */
}

.button-image {
  width: 25px; /* Placeholder image size */
  height: 25px;
  margin-right: 8px;
}

.listing-container {
  width: 80%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

.listing {
  display: flex;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.listing-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.listing-details {
  padding: 10px;
}

footer {
  background-color: #cccccc;
  padding: 20px;
  text-align: center;
}

footer a {
  text-decoration: none;
  color: #0073bb;
  margin: 0 10px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center; /* Center the pagination links */
    align-items: center; /* Align items vertically */
    margin-top: 20px;
    margin-bottom: 20px; /* Add space around pagination */
    gap: 10px; /* Add space between pagination links */
}

.pagination a {
    background-color: #0073bb; /* Match button background color */
    color: white;
    padding: 10px 20px; /* Increase padding for more clickable area */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.pagination a:hover {
    background-color: #005a99; /* Darker blue on hover */
}

.pagination .active {
    background-color: #005a99; /* Active page style */
    cursor: default;
}

  .welcome-message {
    display: none; /* Hide welcome message on smaller screens */
  }
}
