/* Fix toolbar to top of viewport */
.note-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Offset editor to avoid overlap */
.note-editor {
  margin-top: 80px; /* Adjust based on toolbar height */
}
.no-bullets {
    list-style-type: none;
}
.tree-link {
    /*color: #000;               /* Plain black */
    text-decoration: none;     /* Remove underline */
}

.tree-link:hover {
    text-decoration: underline; /* Optional: add underline on hover */
    /*color: #000;                /* Keep color consistent */
}

#floating-summernote-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #ccc;
  padding: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.note-file-clip {
  max-width: 40%;
  border: #000 5px double;
}