/* vendors.css - Vendor selection page styles */

.vendor-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.vendor-card {
  padding: 30px;
  background: #f8f9ff;
  border-radius: 12px;
  border: 3px solid #000;
  transition: all 0.3s;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
  min-width: 280px;
  width: 280px;
  height: 150px;
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vendor-card:not(.disabled):hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.vendor-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.vendor-card h2 {
  font-size: 1.5rem;
  color: #667eea;
  margin-bottom: 10px;
  margin-top: 0;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendor-card p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .vendor-grid {
    flex-direction: column;
  }
  
  .vendor-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
