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

.profile-section {
  width:68rem;
  display: flex;
  margin-bottom: 2rem;
  justify-content: space-between;
 
}

.profile-image {
  width:19rem;
}

.profile-image img {
  width: 19rem;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.profile-image.right{
  width:23.5rem;
}
.profile-image.right img{
  width:23.5rem;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
.profile-table {
  
  width: 22rem;
}

.profile-table table {
  width: 22rem;
  border-collapse: collapse;
  font-family: 'League Spartan', sans-serif;
}

.profile-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.1rem;
}

.profile-table td:first-child {
  font-weight: 500;
  width: 40%;
}

.profile-table .drop_element {
  width: 100%;
  min-height: 2.5rem;
  border: 2px solid #F9B002;
  border-radius: 1.25rem;
  background-color: white;
}

.answers-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  
  width: 48rem;
  padding: 1.5rem;
  justify-content: center;
  /*background-color: rgba(249, 176, 2, 0.1);*/
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .answers-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.drag_element {
  width: 100%;
  height: 2.5rem;
  
  background-color: white;
  border: 2px solid #00699F;
  border-radius: 1.25rem;
  text-align: center;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  cursor: grab;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.drop_element.correct {
  border-color: #258174;

}

.drop_element.incorrect {
  border-color: #FF0000;
  
}

/* 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;
  border: 0;
}