/* 
 * Vehicle Buttons New CSS
 * Enhanced styling for vehicle action buttons
 */

.vehicle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  margin: 0.5rem 0.25rem;
}

.vehicle-button-primary {
  background: var(--primary-color, #3498db);
  color: white;
  border: none;
}

.vehicle-button-primary:hover {
  background: var(--primary-color-dark, #2980b9);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-button-secondary {
  background: transparent;
  color: var(--primary-color, #3498db);
  border: 2px solid var(--primary-color, #3498db);
}

.vehicle-button-secondary:hover {
  background: rgba(52, 152, 219, 0.1);
  transform: translateY(-2px);
}

.vehicle-button-danger {
  background: var(--danger-color, #e74c3c);
  color: white;
  border: none;
}

.vehicle-button-danger:hover {
  background: var(--danger-color-dark, #c0392b);
}

.vehicle-button-icon {
  margin-right: 0.5rem;
}

/* Cyberpunk theme overrides */
.cyberpunk .vehicle-button-primary {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  color: #000;
  border: 1px solid #00ffff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
}

.cyberpunk .vehicle-button-primary:hover {
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.cyberpunk .vehicle-button-secondary {
  border: 1px solid #ff00ff;
  color: #ff00ff;
  text-shadow: 0 0 5px rgba(255, 0, 255, 0.7);
}

.cyberpunk .vehicle-button-secondary:hover {
  background: rgba(255, 0, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
  .vehicle-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
