.wheel-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 20px auto;
}
.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  z-index: 10;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}
#wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border: 5px solid #fff;
}
.wheel-manager {
  margin-top: 30px;
  background: #fdfdfd;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #eee;
}
.food-list {
  list-style: none;
  padding: 0;
  max-width: 300px;
  margin: 0 auto;
  text-align: left;
}
.food-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  color: #555;
}
.delete-food-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.delete-food-btn:hover {
  transform: scale(1.2);
}