/* Ungewöhnliche Hobbys. – D&D besede v posamezna drop polja (oblike kot E08_U05_1). Ozadje sticker_notes. */

.exercise-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  height: 100%;
  max-height: 42rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 0;
  flex: 1;
  box-sizing: border-box;
  overflow: hidden;
}

/* Ozadje: slika za drop polji */
.sticky-notes-wrapper {
  position: relative;
  width: 56rem;
  min-height: 0;
  flex: 1 1 auto;
  max-height: 26rem;
  flex-shrink: 0;
}

.sticky-notes-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("sticker_notes.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Drop zone – pozicionirane neodvisno od mreže/ozadja */
.drop-zones {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.drop-zones .drop_element {
  pointer-events: auto;
}

#drop1a { top: 5.8rem; left: 14rem; }
#drop1b { top: 7.8rem; left: 14rem; }
#drop1c { top: 9.8rem; left: 14rem; }
#drop2a { top: 5.8rem; left: 28.5rem; }
#drop2b { top: 7.8rem; left: 28.5rem; }
#drop2c { top: 9.8rem; left: 28.5rem; }
#drop3 { top: 16rem; left: 14rem; }
#drop4a { top: 16rem; left: 28.5rem; }
#drop4b { top: 18rem; left: 28.5rem; }
#drop4c { top: 20rem; left: 28.5rem; }

/* Drop polja – oblike kot E08_U05_1 (oval, ena beseda), pozicija po ID v .drop-zones */
.drop_element {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  min-width: 11rem;
  height: 2rem;
  min-height: 2rem;
  flex-shrink: 0;
  border: 0.15rem solid #F9B002;
  border-radius: 0.9rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0 0.4rem;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.drop_element_single {
  width: 11rem;
  min-width: 11rem;
}

.drop_element.dragover {
  background-color: rgba(249, 176, 2, 0.2);
}

.drop_element .drag_element {
  border: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0 0.25rem;
}

.drop_element.correct {
  border-color: #258174;
  background-color: rgba(37, 129, 116, 0.1);
}

.drop_element.incorrect {
  border-color: #FF0000;
  background-color: rgba(255, 0, 0, 0.08);
}

/* Povleci-elementi – oblike kot E08_U05_1 */
.drag_element {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  font-size: 1rem;
  user-select: none;
  width: 11rem;
  min-width: 11rem;
  height: 2rem;
  min-height: 2rem;
  padding: 0 0.5rem;
  box-sizing: border-box;
  background-color: #fff;
  border: 0.15rem solid #00699F;
  border-radius: 0.9rem;
  text-align: center;
}

.drag_element.dragging {
  opacity: 0.5;
  cursor: grabbing;
}

.drag_element.correct {
  border-color: #258174;
}

.drag_element.incorrect {
  border-color: #e00;
}

.answers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: flex-start;
  padding: 0.5rem 1rem;
  min-height: 3rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 56rem;
  box-sizing: border-box;
}

@media (hover: none) {
  .drag_element {
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
}
