#memomain {
    border: 1px solid #333;
    width: 100%;
    margin-top: 25px;
    position: relative;
    padding: 20px;
    border-radius: 5px;
    p {
        position: absolute;
        top: -15px;
        margin: 0;
        background: #f7f7f7;
        width: 100px;
        text-align: center;
    }
    textarea {
        height: 150px;
    }
    .memobtn {
        display: flex;
        justify-content: end;
        gap: 10px;
        margin-top: 10px;

        button {
            width: 120px;
            height: 50px;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            &:hover {
                opacity: 0.8;
                transform: scale(1.05);
            }
            &:active {
                opacity: 0.5;
                transform: scale(0.95);
            }
        }
    }
}

#memolist {
    border: 1px solid #333;
    width: 100%;
    margin-top: 25px;
    position: relative;
    padding: 20px;
    border-radius: 5px;
    .top {
        position: absolute;
        top: -15px;
        margin: 0;
        background: #f7f7f7;
        width: 100px;
        text-align: center;
    }
}
.memo-item {
    background: #fff;
    box-shadow: 0 0 1px 0 #000;
    overflow: hidden;
    padding: 10px;
    border-radius: 5px;
    h3 {margin: 0;}
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
    .memodata {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: gray;
        gap: 5px;
        margin: 0;
        *{margin: 0;}
        .line {
            width: 1px;
            height: 15px;
            background: #d6d6d6;
        }
    }
    button {
        background: #ff8585;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 70px;
        border: none;
    }
}