/* Sticky Note Manager CSS extracted from notes.html */
.editor-area ul {
    list-style-type: disc;
    margin-left: 2em;
    padding-left: 0.5em;
}
.editor-area ol {
    list-style-type: decimal;
    margin-left: 2em;
    padding-left: 0.5em;
}
.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.editor-toolbar .icon-group {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    border: 1.5px solid #ececec;
    border-radius: 2.5rem;
    padding: 0.25rem 0.7rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}
.editor-toolbar button {
    background: transparent;
    border: none;
    border-radius: 0.7rem;
    padding: 0.4rem 0.7rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    color: #222;
    transition: background 0.15s, border 0.15s;
}
.editor-toolbar button.active {
    background: #fef08a;
    border-radius: 0.7rem;
    color: #222;
}
.save-btn-toolbar {
    background: #fef102;
    color: #222;
    border-radius: 2rem;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0.6rem 1.7rem;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07);
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    height: 2.6rem;
    border: none;
}
.save-btn-toolbar:hover {
    background: #ffe600;
}
.note-list-item {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
    color: #222;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: box-shadow 0.15s, background 0.15s, transform 0.15s;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    min-height: auto;
}
.note-list-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}
.note-list-item.active {
    background: #fef08a;
    color: #222;
    font-weight: 600;
    box-shadow: 0 4px 16px 0 rgba(250, 202, 21, 0.18);
    transform: translateY(-1px);
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.editor-area {
    min-height: 272px;
    border: none;
    border-radius: 1.2rem;
    padding: 1.6rem 1.2rem;
    background: #fff;
    font-size: 0.94rem;
    outline: none;
    margin-bottom: 1.2rem;
    font-family: inherit;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.18s;
}
.editor-area:focus {
    box-shadow: 0 4px 24px 0 rgba(37, 99, 235, 0.10);
}
.action-btn {
    background: #222;
    color: #fff;
    border-radius: 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    transition: background 0.15s, transform 0.15s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}
.action-btn:hover {
    background: #444;
    transform: translateY(-1px);
}
.icon-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1.1rem;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: color 0.15s;
}
.icon-btn:hover {
    color: #e11d48;
}
.editor-meta {
    font-size: 0.875rem;
    color: #6b7280;
}
