.home-page {
  min-height: 100vh;
}

.hero {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
}

.hero p {
  margin: 0;
  font-size: 20px;
  opacity: 0.9;
}

.error-banner {
  background-color: #ffebee;
  color: #c62828;
  padding: 15px;
  text-align: center;
  font-weight: 500;
}

.controls {
  padding: 20px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.radius-control {
  flex: 1;
  min-width: 200px;
}

.radius-control label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
}

.radius-control input[type="range"] {
  width: 100%;
}

.refresh-btn {
  padding: 10px 20px;
  background-color: #d32f2f;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.refresh-btn:hover {
  background-color: #b71c1c;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  min-height: 600px;
}

.map-section {
  position: relative;
  min-height: 600px;
}

.list-section {
  background-color: white;
  padding: 20px;
  overflow-y: auto;
  max-height: 800px;
  border-left: 1px solid #ddd;
}

.list-section h2 {
  margin: 0 0 20px 0;
  color: #333;
}

.stands-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stand-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  transition: box-shadow 0.2s;
}

.stand-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stand-card h3 {
  margin: 0 0 8px 0;
  color: #d32f2f;
  font-size: 18px;
}

.stand-card .address {
  margin: 0 0 8px 0;
  color: #666;
  font-size: 14px;
}

.stand-card .rating {
  margin: 8px 0;
  font-size: 14px;
  color: #333;
}

.stand-card .distance {
  margin: 8px 0;
  font-size: 14px;
  color: #666;
}

.stand-card .details-link {
  display: inline-block;
  margin-top: 10px;
  color: #d32f2f;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.stand-card .details-link:hover {
  text-decoration: underline;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #666;
}

@media (max-width: 968px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .list-section {
    border-left: none;
    border-top: 1px solid #ddd;
    max-height: none;
  }
  
  .map-section {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
}
