#container.drag-container {
    width: 100%;
    height: 110vh;
    position: relative;
    margin: auto;
}

#container.drag-container .card {
    width: 22%;
    background: white;
    padding: 25px;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: grab;
    border-radius: 10px;
    user-select: none;
    transition: transform 0.1s ease-out, box-shadow 0.2s;
}

#container.drag-container .card:active {
    cursor: grabbing;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(0deg) scale(1.02) !important;
}

#container.drag-container .card img {
    width: 100%;
    pointer-events: none;
    margin-top: 5px;
    margin-bottom: 5px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

#container.drag-container .header {
    font-weight: bold;
    font-family: sans-serif;
    font-size: 17px;
    color: #000000;
}

#container.drag-container .card img.icon {
    width: 20px;
    height: auto;
}
