.notes-textarea {
    width: 100%;
    min-height: 100px;
    padding: var(--space-3);
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--body);
    font-family: var(--font);
    resize: vertical;
    transition: border-color var(--transition);
    outline: none;
}

.notes-textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

.notes-textarea::placeholder {
    color: var(--text-dim);
}

.notes-status {
    font-size: var(--xs);
    color: var(--text-dim);
    text-align: right;
}

.notes-status-text {
    color: var(--text-muted);
}

.notes-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-2);
}

.notes-meta {
    flex: 1;
    min-width: 0;
}

.notes-char-count {
    font-size: var(--xs);
    color: var(--text-dim);
}

.btn-notes-save {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: var(--caption);
    font-weight: var(--weight-semibold);
    color: var(--accent-primary);
    background: var(--accent-primary-subtle);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-md);
    height: 28px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-notes-save:hover {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 0 8px var(--accent-primary-subtle);
}

.btn-notes-save:active {
    transform: scale(0.97);
}
