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

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  background: #595dbb;
}

.sortable-list {
  background: #fff;
  width: 445px;
  border-radius: 8px;
  padding: 20px 15px;
  list-style: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sortable-list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: grab;
}

.sortable-list .item:hover {
  background: #f1f1f1;
}

.sortable-list .item:active {
  cursor: grabbing;
}

.sortable-list .item.dragging {
  background: #ececec;
  opacity: 0.8;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.item .details {
  display: flex;
  align-items: center;
}

.item .details img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
  object-fit: cover;
  border-radius: 50%;
}

.item .details span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.reset-btn {
  margin-top: 20px;
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.reset-btn:hover {
  background: #45a049;
}
