html, body {
    margin: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

/* 上 */
#property_console{
    height: 15vh;
    background-color: aqua;
    text-align: center;
    display: flex;
    gap: 10px;              /* 要素間のスペース */
    justify-content: center; /* 中央寄せ（お好みで） */
    align-items: center;
}

/* 中（スクロール） */
#building{
    flex: 1;              /* 残り全部使う */
    background-color: white;
    overflow-y: auto;    /* ← スクロール */
    position: relative;
}

/* 下 */
#debug_console{
    height: 20vh;
    background-color: aquamarine;
    display: flex;
    gap: 10px;              /* 要素間のスペース */
    justify-content: flex-start;/* 中央寄せ（お好みで） */
    align-items: center;
}


.ele {
    flex: 1;
    height: 90%;
    text-align: center;
    border-radius: 10px;    /* ← 角丸 */
    border: 2px solid #333; /* ← 枠線 */
}

table{
    width: 100%;
    border-collapse: collapse; /* 枠線を1本に */
}
td{
    border: 1px solid black;
    height: 50px;
    text-align: center;
}

.node{
    width: 100px;
    height: 100px;
    background-color: blue;
    position: absolute;
    transition: top 1s ease-in-out;
}



