body {
    font-family: Arial, sans-serif;
    margin: 30px;
  }
  
  h1 {
    text-align: center;
    color: #2c3e50;
  }
  
  .drag-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .drag-item {
    background: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: grab;
  }
  
  .drop-box {
    width: 200px;
    height: 100px;
    border: 2px dashed #95a5a6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }
  