.dealer-locator {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.dealer-locator input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    box-sizing: border-box;
}

.dealer-locator #searchDescription {
    text-align: center;
    margin-top: 5px;
    font-style: italic;
    color: #555;
}

/* Container for all cards */
.dealer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
  }
  
  /* Individual dealer card */
  .dealer-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    transition: transform 0.2s ease;
  }
  
  .dealer-card:hover {
    transform: translateY(-5px);
  }
  
  .dealer-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .dealer-card p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  
  /* Responsive for small devices */
  @media (max-width: 480px) {
    .dealer-card {
      width: 100%;
    }
  }
  