/* Override body styles for businesses page */
body.businesses-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.businesses-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}
.header {
  background: #2c3e50;
  color: white;
  padding: 40px 30px;
  text-align: center;
}
.header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 300;
}
.header p {
  margin: 10px 0 0 0;
  opacity: 0.9;
  font-size: 1.1rem;
}
.content {
  padding: 40px 30px;
}
.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.business-card {
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.business-card:hover {
  border-color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}
.business-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f8f9fa;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #667eea;
  border: 3px solid #e1e8ed;
}
.business-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
}
.business-description {
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.4;
}
.no-businesses {
  text-align: center;
  padding: 60px 20px;
  color: #7f8c8d;
}
.no-businesses h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}
.loading {
  text-align: center;
  padding: 40px;
  color: #7f8c8d;
}