.note-content {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.note-content.expanded {
    max-height: none;
}

.toggle-notes {
    display: none;
    background: #fff;
    color: #575757;
    border: 1px solid #575757;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
    border-radius: 4px;
}

.toggle-notes:hover {
    background: #575757;
    color: #fff;
}

.note-content:not(.expanded) {
    max-height: 100px;
}

.note-content:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 1)
    );
}
