#ide table {
    width: 100%;
    height: 20px;
}

#ide table tr {
    height: 20px;
}
#ide table td {
    padding: 0 5px;
    text-align: center;
}
#ide table td:nth-child(1) {
    width: 50%;
}
#ide table td:nth-child(2) {
    width: 25%;
}
#ide table td:nth-child(3) {
    width: 25%;
}
#ide button {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
#ide button:hover {
    background-color: #e0e0e0;
}
#ide button:active {
    background-color: #d0d0d0;
}
#ide-body {
    width: 100%;
}
#ide hr {
    border: 1px solid lightgray;
}
svg.lad {
    background: transparent;
}

svg.lad line {
    stroke-width: 1;
    stroke: black;
}

g.shape rect {
    fill: transparent;
    stroke: none;
    cursor: pointer;
}
g.shape.selected rect {
    fill: lightblue;
}

g.shape text.icon {
    text-anchor: middle;
    dominant-baseline: middle;
    user-select: none;
}

#trash-bin {
    position: absolute;
    font-size: 20px;
    text-align: center;
    width: calc(100% - 20px);
    height: 40px;
    bottom: 20px;
    cursor: pointer;
    border: 1px solid gray;
    border-radius: 5px;
    background-color: lightgray;
}
#trash-bin:hover {
    background-color: blue;
}
