/* Custom styles */
.dice {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.grid-slot {
    position: relative;
    min-height: 80px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.grid-slot.highlight {
    background-color: #e0e7ff;
}

.dice-stack {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Animation for dice casting */
@keyframes diceRoll {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 0; }
    100% { transform: translateY(0) rotate(360deg); opacity: 1; }
}

.dice-enter {
    animation: diceRoll 0.5s ease-out forwards;
}