.dg-e84b5446-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    background: #f5f5f5; /* Optional placeholder background */
}
.dg-e84b5446-container:active {
    cursor: grabbing;
}
.dg-e84b5446-track {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}
.dg-e84b5446-row {
    display: flex;
    flex: 1;
}
.dg-e84b5446-item {
    flex: 0 0 auto;
    padding: 10px;
    box-sizing: border-box;
    /* Adjust width/height as needed for items in the grid */
    height: 300px; 
    width: 400px;
}
.dg-e84b5446-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none; /* Crucial for dragging over images */
    border-radius: 8px; /* Optional slight styling */
}
