body {
    padding-top: 70px;
}

.padded-right  { margin-right: 8px; }
.padded-top    { margin-top: 8px; }
.padded-bottom { margin-bottom: 8px; }

/* Inline-edit: editable spans look clickable */
.editable {
    cursor: pointer;
    border-bottom: 1px dashed #aaa;
}

/* Context menu */
.context-trigger {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
.context-menu {
    display: none;
    position: fixed;
    z-index: 9999;
    min-width: 160px;
}
.context-menu.show {
    display: block;
}

/* Search result rows */
.search-hit {
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 4px;
}
.search-hit:hover {
    background: #e8f4ff;
}
.search-hit.selected {
    background: #cce5ff;
}
