.ui-resizable-helper { border: 1px dotted gray; }
#draggable {
    width: 100px;
    height: 100px;
    background-color: lightblue;
    border: 1px solid blue;
    cursor: move;
    position: absolute;
}
#container {
    width: 800px;
    height: 500px;
    border: 1px solid #aa2a2a;
}


#contextMenu {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 1000;
}
#contextMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#contextMenu ul li {
    padding: 8px 12px;
    cursor: pointer;
}
#contextMenu ul li:hover {
    background-color: #eee;
}
#saveall,#loadall{
    border: 1px solid #cccccc;
    border-radius: 3px;
    width: 100px;
}
#saveall:hover,#loadall:hover{
    background-color: green;
}
#restaurant {
    position: relative;
    border: 2px solid #d3b81d;
    height: 350px;
    width: 100%;
}

.table {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    position: absolute;
}