/* Placeholder slots at the top */
.poker-slot {
    width: 100px;
    height: 140px;
    border: 2px dashed #ccc;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.poker-slot:hover {
    background-color: #e9ecef;
}

/* Draggable playing cards */
.playing-card {
    width: 100px;
    height: 140px;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    user-select: none;
    border: 1px solid #dee2e6;
}

.playing-card:active {
    cursor: grabbing;
}