/* Import Google League Spartan font */
@font-face {
  font-family: 'League Spartan';
  src: url('../assets/fonts/LeagueSpartan-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}

/* Exercise specific styles */
.content-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.menu-table {
  width: auto;
  border-spacing: 0.5rem;
  margin-bottom: 2rem;
}

.image-row td {
  text-align: center;
  vertical-align: middle;
  height: 9rem;
  padding: 0.25rem;
}

.drop-row td {
  text-align: center;
  vertical-align: top;
  height: 2rem;
  /*padding: 0.25rem 0.25rem 1rem 0.25rem;*/
}

.food-image {
  width: 10rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 1.25rem;
  border: 2px solid #00699F;
}

/* Drop element styles - using the styles from main.css */
.drop_element {
  width: 10rem;
  height: 2.5rem;
  margin: 0 auto;
  border-radius: 1.25rem;
  border: 2px solid #F9B002;
  /*background-color: rgba(249, 176, 2, 0.05);*/
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}



/* Drag element styles - using the styles from main.css */
.drag_element {
  width: 10rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: grab;
  font-size: 1.2rem;
  user-select: none;
  border-radius: 1.25rem;
  border: 2px solid #00699F;
  background: #FFF;
  /*padding: 0.5rem;*/
  margin: 0.5rem;
  transition: transform 0.2s ease;
}

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

/* Answers container */
.answers-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 12rem;
  min-height: 30rem;
  padding: 1rem;
  /*border-radius: 1.25rem;
  border: 2px dashed #00699F;
  background-color: rgba(0, 105, 159, 0.05);*/
}
.ghost {
  pointer-events: none;
  position: fixed;
  z-index: 1000;
  opacity: 0.5;
  background: white;
  
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.drop_element.correct, .drag_element.correct {
  border-color: #258174;
  
}

.drop_element.incorrect, .drag_element.incorrect {
  border-color: #FF0000;
}
.drop_element .drag_element{
  background-color: none;
  border: 0;
}