/* Limonade machine styling */
.map-tile.lemonade-machine {
  background: linear-gradient(135deg, #ffd700 0%, #ffeb3b 100%);
  border: 2px solid #ffa000;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 160, 0, 0.3);
  position: relative;
  animation: lemonade-machine-pulse 3s ease-in-out infinite;
}

.map-tile.lemonade-machine:hover {
  background: linear-gradient(135deg, #ffeb3b 0%, #fff176 100%);
  border-color: #ff8f00;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 160, 0, 0.4);
}

@keyframes lemonade-machine-pulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(255, 160, 0, 0.3);
  }
  50% {
    box-shadow: 0 2px 8px rgba(255, 160, 0, 0.6);
  }
}

/* Limonade modal styling */
.lemonade-machine-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease-out;
}

.lemonade-machine-modal-content {
  background: linear-gradient(135deg, #fff8dc 0%, #f0e68c 100%);
  border: 3px solid #daa520;
  border-radius: 15px;
  max-width: 600px;
  width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.lemonade-machine-modal-header {
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lemonade-machine-modal-body {
  padding: 20px;
}

/* Responsive voor limonade machine modal */
@media (max-width: 700px) {
  .lemonade-machine-modal-content {
    max-width: 95vw;
    width: 95vw;
    padding: 0;
    margin: 0 auto;
  }
  .lemonade-machine-modal-header {
    padding: 10px 15px;
  }
  .lemonade-machine-modal-body {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .lemonade-machine-modal-content {
    max-width: 92vw;
    width: 92vw;
  }
  .lemonade-machine-modal-header {
    padding: 8px 12px;
  }
  .lemonade-machine-modal-body {
    padding: 12px;
  }
}