.pile {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding-top: 30px;
}

.text-item {
    width: 180px;
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: 2px solid #2980b9; /* Border to ensure visibility */
    margin-top: 10px; /* Adjust this to control overlap */
    cursor: grab;
    user-select: none;
    position: absolute;
    top: 0; /* Initial position */
    left: 10px; /* Ensure slight offset for visibility */
}

.pile .text-item:nth-child(1) {
    z-index: 3;
}

.pile .text-item:nth-child(2) {
    top: 30px; /* Adjust for overlap */
    z-index: 2;
}

.pile .text-item:nth-child(3) {
    top: 60px; /* Adjust for overlap */
    z-index: 1;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"] {
    padding: 10px;
    border: 2px dashed #2ecc71;
    color: #2ecc71;
}
