.sticky-note {
    position: absolute;
    width: 8vw;
    height: 8vw;
    background: #f6e173;
    border: 0.2vw solid #d4b200;
    border-radius: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5vw;
    font-weight: bold;
    cursor: grab;
    user-select: none;
}

.table {
    position: absolute;
    top: 5vh;
    right: 5vw;
    width: 30vw;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 0.5vh 1vh rgba(0, 0, 0, 0.15);
}

.table th,
.table td {
    border: 0.2vw solid #000;
    padding: 1vh 1vw;
    text-align: center;
    font-size: 1.8vw;
}

.drop-zone {
    position: relative;
    min-height: 6vh;
}