/* Add separator between source reference and note text in pinned notes */

/* Add a subtle separator line between the first and second line */
.note-first-line {
    position: relative;
    padding-bottom: 0.25rem; /* Reduced from 0.5rem */
    margin-bottom: 0; /* Remove margin to eliminate gap */
}

.note-first-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1); /* Very subtle white line */
}

/* Add small top padding to the note text */
.note-user-text {
    padding-top: 0.25rem; /* Small padding above text */
}

/* Ensure proper spacing */
.note-layout {
    gap: 0; /* Remove default gap since we're using padding/margin */
}