.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 68rem;
  max-width: 60rem;
  margin: 0 auto;
}

.time-zones-table {
  width: 68rem;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.time-zones-table table {
  width: 68rem;
  border-collapse: collapse;
  font-family: 'League Spartan', sans-serif;
}

.time-zones-table td {
  padding: 0.75rem;
  text-align: center;
  vertical-align: middle;
  font-size: 1.1rem;
}

.city-row img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  max-height: 10rem;
  object-fit: cover;
}

.timezone-row td {
  font-weight: 700;
  font-size: 1.2rem;
  color: #00699F;
}

.clock-row .drop_element {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border: 2px solid #F9B002;
  border-radius: 1.25rem;
  background-color: white;
  box-sizing: border-box;
}

.answers-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 60rem;
  height:5.8rem;
  max-width: 50rem;
  padding: 1.5rem;
  justify-content: center;
  background-color: rgba(249, 176, 2, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.drag_element {
  width: 5rem;
  height: 5rem;
  background-color: white;
  border: 2px solid #00699F;
  border-radius: 1.25rem;
  cursor: grab;
  user-select: none;
  margin: 0 auto;
  box-sizing: border-box;
}

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

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

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

/* Touch device support */
@media (hover: none) {
  .drag_element {
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
} 

.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;
  background: none;
  border: 0;
  width: 4.75rem;
  height: 4.75rem;
}