* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body {
  background: #0b0423;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

#left,
#right {
  width: 300px;
  min-height: 400px;
  border: 2px dashed white;
  border-radius: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.list {
  background: #e91e63;
  height: 60px;
  margin: 20px 0;
  color: white;
  display: flex;
  align-items: center;
  cursor: grab;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.list img {
  width: 16px;
  margin-right: 15px;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  #left,
  #right {
    width: 90%;
    min-height: 250px;
  }

  .list {
    font-size: 15px;
    height: auto;
    padding: 10px;
  }

  .list img {
    width: 14px;
  }
}