.sticky-note {
    width: 360px;
    height: 360px;
    padding: 10px;
    position: absolute;
    background-color: #ffeb3b;
}


.sticky-note::before {
    position: absolute;
    bottom: -5px;
    right: 7px;
    z-index: -1;
    transform: rotate(5deg);
    width: 70%;
    height: 50%;
    background-color: #d0d0d0;
    content: "";
    filter: blur(4px);
}

.sticky-note-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    cursor: grab;
}


.sticky-note:hover .sticky-note-header {
    display: flex;
}


.sticky-note-body {
    margin: 12px;
    height: calc(100% - 35px);
    overflow: auto;
}


.sticky-note-header input[type="color"] {
    margin-right: auto; /* これでカラーピッカーを左に配置 */
}


.noteColor {
    width: 48px !important;
    height: 24px !important;
}