/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #acc9fd;
  text-align: center;
  padding: 20px;
}

h1 {
  color: #0e0101;
}



/* Trademark Logo */
.trademark-logo {
  position: fixed;
  bottom: 5px;
  right: 10px;
  width: 80px;       /* Adjust size as needed */
  height: auto;
  opacity: 0.8;       /* Slight transparency to look like a watermark */
  z-index: 1000;      /* Ensure it stays on top */
}

/* Logo (Top Corner) Styles */
.logo {
  position: absolute;
  top: 100px;
  width: 200px;        /* Adjusted for better visibility */
  height: auto;
  z-index: 10;
}

.left-logo {
  left: 10px;
}

.right-logo {
  right: 10px;
}

/* Game Area Styles */
.game-area {
  position: relative;
  margin: 20px auto;
  width: 500px;
  height: 300px;
}

/* Plant Image Styles */
.plant-image {
  width: 70%;
  height: auto;
}

/* Dropzones Container */
.dropzones {
  position: absolute;
  top: 0;
  left: 0;
}

/* Individual Dropzone Styles */
.dropzone {
  position: absolute;
  width: 100px;
  height: 30px;
  background-color: #fff3cd;
  border: 2px dashed #ffc107;
  border-radius: 5px;
  font-weight: bold;
  line-height: 30px;
  cursor: pointer;
}

/* Draggables Container */
.draggables {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Individual Draggable Styles */
.draggable {
  background-color: #d1ecf1;
  border: 2px solid #0c5460;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: grab;
  font-weight: bold;
}

/* Message Styles */
#message {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: green;
}
/* Make layout mobile-friendly */
body {
  font-family: Arial, sans-serif;
  background-color: #acc9fd;
  margin: 0;
  padding: 0;
  text-align: center;
}

.top-bar {
  position: relative;
  padding: 20px;
}

.title {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Logos adjust */
.logo {
  width: 100px;
  top: 10px;
}

.left-logo {
  left: 10px;
}

.right-logo {
  right: 10px;
}

.trademark-logo {
  width: 60px;
}

/* Responsive game area */
.game-area {
  position: relative;
  margin: 0 auto;
  padding: 20px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive image */
.plant-image {
  width: 100%;
  max-width: 300px;
}

/* Dropzones */
.dropzones {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.dropzone {
  position: absolute;
  width: 100px;
  height: 30px;
  background-color: #fff3cd;
  border: 2px dashed #ffc107;
  border-radius: 5px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  z-index: 2;
}

.draggables {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.draggable {
  background-color: #d1ecf1;
  border: 2px solid #0c5460;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: grab;
  font-weight: bold;
  touch-action: none; /* prevent scroll interference */
}

button {
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 16px;
}
